/**
* CSS Personalizado para: Casa Lucho
*/

/*--------------------------------------------------------------
# Variables Principales
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
  --heading-font: "Inter", sans-serif;
  --nav-font: "Inter", sans-serif;
}

/* Colores Globales */
:root { 
  --background-color: #ffffff;
  --default-color: #212529;
  --heading-color: #37373f;
  --accent-color: #FF6B6B;    /* Color principal Casa Lucho (rojo) */
  --secondary-color: #FFB347;  /* Color secundario Casa Lucho (naranja) */
  --accent-dark: #FF7F50;     /* Color acento Casa Lucho (naranja oscuro) */
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Colores del Menú de Navegación */
:root {
  --nav-color: #7f7f90;
  --nav-hover-color: #FF6B6B;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #7f7f90;
  --nav-dropdown-hover-color: #FF6B6B;
}

/* Presets de Color para Secciones */
.light-background {
  --background-color: #f8f9fa;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1f1f24;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #37373f;
  --contrast-color: #ffffff;
}

/* Scroll Suave */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# Estilos Generales
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: var(--background-color);
  padding: 5px 0;
  transition: all 0.5s;
  z-index: 997;
  height: auto;
  min-height: 70px;
}

.header .container {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo {
  line-height: 1;
  padding: 5px 0;
}

.header .logo img {
  max-height: 240px;
  width: auto;
  transition: all 0.3s ease-in-out;
}

.header.sticky-top {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header.sticky-top .logo img {
  max-height: 140px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 8px 23px;
  border-radius: 50px;
  transition: 0.3s;
  font-size: 14px;
}

.header .btn-getstarted:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/* Media Queries para responsive */
@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }
  
  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }
  
  .header .navmenu {
    order: 3;
  }
}

@media (max-width: 768px) {
  .header .logo img {
    max-height: 120px;
  }
  
  .header.sticky-top .logo img {
    max-height: 100px;
  }
}

@media (max-width: 576px) {
  .header {
    padding: 5px 0;
    min-height: 60px;
  }

  .header .logo img {
    max-height: 100px;
  }
  
  .header.sticky-top .logo img {
    max-height: 80px;
  }
}

@media (max-width: 375px) {
  .header .logo img {
    max-height: 80px;
  }
  
  .header.sticky-top .logo img {
    max-height: 60px;
  }
}

/*--------------------------------------------------------------
# Menú de Navegación
--------------------------------------------------------------*/
/* Navegación Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    padding: 0 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out;
  }

  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu a:hover,
  .navmenu .active {
    color: var(--nav-hover-color);
  }
}

/* Navegación Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 8px;
    background: none;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    cursor: pointer;
    gap: 5px;
    transition: all 0.3s ease;
    z-index: 9999;
  }

  .mobile-nav-toggle:hover {
    background: var(--accent-color);
  }

  .mobile-nav-toggle:hover .hamburger-bar {
    background-color: #fff;
  }

  .hamburger-bar {
    display: block;
    width: 22px;
    height: 2.5px;
    background-color: var(--accent-color);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }

  .mobile-nav-active .mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
  }

  .mobile-nav-active .mobile-nav-toggle .hamburger-bar {
    background-color: #fff;
  }

  .mobile-nav-active .mobile-nav-toggle .hamburger-bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  .mobile-nav-active .mobile-nav-toggle .hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .mobile-nav-active .mobile-nav-toggle .hamburger-bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 0 0 0 25%;
    padding: 100px 0 40px;
    margin: 0;
    border-radius: 0;
    background-color: #1f1f24;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    list-style: none;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  }

  .navmenu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .navmenu a,
  .navmenu a:focus {
    display: flex;
    align-items: center;
    padding: 16px 30px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
    transition: all 0.3s;
    letter-spacing: 0.5px;
  }

  .navmenu a:hover {
    color: #fff;
    background-color: rgba(255, 107, 107, 0.15);
    padding-left: 36px;
  }

  .navmenu .active {
    color: var(--accent-color);
    border-left: 3px solid var(--accent-color);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 60vh;
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 12px 35px;
  border-radius: 50px;
  transition: 0.5s;
  font-size: 16px;
  font-weight: 500;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Secciones Globales
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 60px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-transform: uppercase;
  margin: 0;
}

.section-title p {
  margin: 10px 0 0 0;
  font-size: 38px;
  font-weight: 700;
}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-box {
  padding: 40px;
  background: var(--surface-color);
  text-align: center;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  height: 100%;
}

.services .service-box .icon {
  font-size: 36px;
  padding: 40px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}

.services .service-box h3 {
  color: var(--heading-color);
  font-weight: 700;
}

.services .service-box:hover {
  transform: scale(1.02);
}

/*--------------------------------------------------------------
# Video Components (About y Gallery)
--------------------------------------------------------------*/
/* Estilos compartidos para contenedores de video */
.video-container, .video-thumbnail {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 20px;
}

.video-container img, .video-thumbnail img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-button {
  background-color: rgba(255, 107, 107, 0.8);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 3px solid white;
}

.play-button i {
  font-size: 36px;
  color: white;
}

.video-overlay-caption, .video-thumbnail-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 10px 15px;
  margin: 0;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
}

/* Efectos hover para elementos de video */
.video-container:hover .play-overlay,
.video-thumbnail:hover .play-overlay {
  background-color: rgba(0, 0, 0, 0.4);
}

.video-container:hover .play-button,
.video-thumbnail:hover .play-button {
  transform: scale(1.1);
  background-color: rgba(255, 107, 107, 1);
}

.video-container:hover img,
.video-thumbnail:hover img {
  transform: scale(1.02);
  filter: brightness(0.9);
}

/* Ajustes específicos para About */
.about .video-container .play-button {
  width: 80px;
  height: 80px;
}

.about .video-container .play-button i {
  font-size: 42px;
}

.about .video-overlay-caption {
  padding: 12px 15px;
  font-size: 16px;
}

/*--------------------------------------------------------------
# Brands Section
--------------------------------------------------------------*/
.brands {
  padding: 80px 0;
  background-color: var(--background-color);
}

.brands .section-title {
  margin-bottom: 40px;
}

.brand-item {
  padding: 30px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.brand-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.brand-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.brand-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .brand-item {
    height: 100px;
    padding: 20px;
  }
  
  .brand-item img {
    max-height: 60px;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  padding: 60px 0;
  overflow: hidden;
}

.gallery-container {
  margin-top: 30px;
}

.gallery-item {
  margin-bottom: 30px;
  position: relative;
}

.gallery-item img {
  border-radius: 8px;
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover img {
  transform: scale(1.02);
}

.gallery-item a {
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

/* Ajustes específicos para Gallery */
.gallery .video-thumbnail img {
  height: 250px;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #d1d1d1;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.gallery .swiper-button-prev,
.gallery .swiper-button-next {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .gallery-item img,
  .gallery .video-thumbnail img {
    height: 220px;
  }
}
/*--------------------------------------------------------------
# Modal de Video
--------------------------------------------------------------*/
#videoModal .modal-content {
  border-radius: 10px;
  overflow: hidden;
  border: none;
}

#videoModal .modal-header {
  background: var(--accent-color);
  color: white;
  border-bottom: none;
  padding: 10px 15px;
}

#videoModal .modal-body {
  padding: 0;
}

#videoModal #workVideo {
  display: block;
  width: 100%;
  max-height: 60vh;
  background: black;
}

#videoModal .btn-close {
  filter: brightness(0) invert(1);
}

.modal-md {
  max-width: 500px;
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq {
  padding: 80px 0;
  background-color: var(--background-color);
}

.faq .accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq .accordion-item {
  border: none;
  background-color: var(--surface-color);
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq .accordion-button {
  background-color: var(--surface-color);
  border: none;
  border-radius: 8px !important;
  font-weight: 600;
  font-size: 17px;
  color: var(--heading-color);
  padding: 20px 25px;
}

.faq .accordion-button:not(.collapsed) {
  color: var(--accent-color);
  background-color: var(--surface-color);
  box-shadow: none;
}

.faq .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.1);
}

.faq .accordion-button::after {
  background-size: 16px;
  transition: all 0.3s ease;
}

.faq .accordion-button:not(.collapsed)::after {
  color: var(--accent-color);
}

.faq .accordion-body {
  padding: 20px 25px;
  font-size: 16px;
  color: var(--default-color);
  line-height: 1.7;
}

.faq .accordion-body ul {
  padding-left: 20px;
}

.faq .accordion-body ul li {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .faq .accordion-button {
    font-size: 16px;
    padding: 16px 20px;
  }
  
  .faq .accordion-body {
    padding: 16px 20px;
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 8px;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  color: var(--heading-color);
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 8px;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  padding: 12px;
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form button[type="submit"] {
  background: var(--accent-color);
  border: 0;
  padding: 12px 40px;
  color: var(--contrast-color);
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 50px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer .footer-info .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .social-links {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 16px;
  color: var(--accent-color);
  margin: 0 5px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.footer .copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Botón Flotante WhatsApp
--------------------------------------------------------------*/
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99998;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 14px 20px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #22b35a;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.whatsapp-float i {
  font-size: 24px;
  line-height: 1;
}

.whatsapp-float-label {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 575px) {
  .whatsapp-float {
    padding: 12px;
    border-radius: 50%;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-float-label {
    display: none;
  }

  .whatsapp-float i {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
}

.scroll-top:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 80px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: var(--surface-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Responsive Adjustments Generales
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }
  
  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
  }
  
  .header .navmenu {
    order: 3;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  .section-title p {
    font-size: 32px;
  }
  
  .services .service-box {
    padding: 30px;
  }
  
  .play-button {
    width: 60px;
    height: 60px;
  }
  
  .play-button i {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .contact .info-item {
    padding: 20px;
  }

  .video-overlay-caption,
  .video-thumbnail-caption {
    padding: 8px;
    font-size: 12px;
  }
}

/* Estilos para el formulario de WhatsApp */
.whatsapp-form .form-container {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.whatsapp-form h4 {
  color: var(--heading-color);
  font-weight: 600;
}

.whatsapp-form label {
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.whatsapp-form .form-control,
.whatsapp-form .form-select {
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 15px;
  transition: all 0.3s ease;
}

.whatsapp-form .form-control:focus,
.whatsapp-form .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
}

.whatsapp-form .btn-send-whatsapp {
  background-color: #25D366; /* Color oficial de WhatsApp */
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.whatsapp-form .btn-send-whatsapp:hover {
  background-color: #22b35a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-form .btn-send-whatsapp:active {
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .whatsapp-form .form-container {
    padding: 20px;
  }
  
  .whatsapp-form .btn-send-whatsapp {
    width: 100%;
    justify-content: center;
  }
}
