:root{
  --mamey:#FF7F50;
  --negro:#0A0A0A;
  --azul:#0A74FF;
  --turquesa:#17BEBB;
  --bg:#ffffff;
  --text:#111827;
  --text-secondary:#6b7280;
  --border:#e5e7eb;
  --shadow:rgba(0,0,0,0.1);
  --header-height:72px;
}

[data-theme="dark"]{
  --bg:#071023;
  --text:#e6eef6;
  --text-secondary:#9ca3af;
  --border:#1f2937;
  --shadow:rgba(0,0,0,0.3);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

html{scroll-behavior:smooth}

@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:0.01ms!important;animation-iteration-count:1!important;transition-duration:0.01ms!important;scroll-behavior:auto!important}
  html{scroll-behavior:auto}
}

body{
  font-family:-apple-system,BlinkMacSystemFont,'Inter','Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  transition:background-color 0.3s ease,color 0.3s ease;
}

img{max-width:100%;height:auto;display:block}

a{color:var(--azul);text-decoration:none;transition:opacity 0.2s ease}
a:hover{opacity:0.8}
a:focus-visible{outline:2px solid var(--azul);outline-offset:2px;border-radius:4px}

button{font-family:inherit;cursor:pointer;border:none;background:none;transition:transform 0.2s ease,opacity 0.2s ease}
button:hover{transform:translateY(-1px)}
button:active{transform:translateY(0)}
button:focus-visible{outline:2px solid var(--azul);outline-offset:2px;border-radius:4px}

.header{
  position:sticky;
  top:0;
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:1rem 5%;
  background:var(--bg);
  border-bottom:1px solid var(--border);
  transition:padding 0.3s ease,box-shadow 0.3s ease,background-color 0.3s ease;
  min-height:var(--header-height);
}

.header.scrolled{
  padding:0.75rem 5%;
  box-shadow:0 4px 12px var(--shadow);
}

.logo{
  display:flex;
  align-items:center;
  gap:0.75rem;
  transition:transform 0.3s ease;
}

.logo:hover{transform:scale(1.02)}

.logo img{
  border-radius:8px;
  transition:transform 0.3s ease;
}

.logo h3{
  font-size:1.25rem;
  font-weight:700;
  color:var(--mamey);
}

.logo small{
  color:var(--text-secondary);
  font-size:0.75rem;
}

.nav{
  display:flex;
  gap:1rem;
  align-items:center;
}

.mobile-menu-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  padding:8px;
  background:transparent;
  border-radius:6px;
}

.mobile-menu-toggle span{
  width:24px;
  height:2px;
  background:var(--text);
  transition:all 0.3s ease;
  border-radius:2px;
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1){transform:rotate(45deg) translateY(7px)}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3){transform:rotate(-45deg) translateY(-7px)}

.nav-links{
  display:flex;
  gap:1.5rem;
  align-items:center;
}

.nav-links a{
  color:var(--text);
  padding:0.5rem 0.75rem;
  border-radius:6px;
  font-weight:500;
  position:relative;
  transition:color 0.2s ease;
}

.nav-links a:hover{
  color:var(--mamey);
}

.nav-links a[aria-current="page"]{
  color:var(--mamey);
}

.nav-links a[aria-current="page"]::after{
  content:'';
  position:absolute;
  bottom:0;
  left:0.75rem;
  right:0.75rem;
  height:2px;
  background:var(--mamey);
  border-radius:2px;
}

.nav-links .admin-link{
  color:var(--text-secondary);
  font-size:0.875rem;
}

.nav-controls{
  display:flex;
  gap:0.5rem;
  margin-left:1rem;
}

.icon-btn{
  padding:0.5rem;
  border-radius:8px;
  background:var(--border);
  color:var(--text);
  font-size:0.875rem;
  font-weight:600;
  min-width:48px;
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background 0.2s ease,transform 0.2s ease;
}

.icon-btn:hover{
  background:var(--mamey);
  color:white;
}

.hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:3rem;
  padding:3rem 5%;
  max-width:1400px;
  margin:0 auto;
  align-items:start;
}

.hero-content{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:1.5rem;
  animation:fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp{
  from{opacity:0;transform:translateY(30px)}
  to{opacity:1;transform:translateY(0)}
}

.hero-badge{
  display:inline-block;
  width:fit-content;
  padding:0.5rem 1rem;
  background:linear-gradient(135deg,var(--turquesa),var(--azul));
  color:white;
  border-radius:20px;
  font-size:0.875rem;
  font-weight:600;
  letter-spacing:0.5px;
  animation:fadeIn 1s ease-out 0.2s both;
}

@keyframes fadeIn{
  from{opacity:0}
  to{opacity:1}
}

.hero-content h1{
  font-size:clamp(2rem,5vw,3.5rem);
  font-weight:800;
  line-height:1.2;
  background:linear-gradient(135deg,var(--mamey),var(--azul));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

.hero-subtitle{
  font-size:1.125rem;
  color:var(--text-secondary);
  line-height:1.7;
}

.hero-cta{
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
  margin-top:0.5rem;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:0.5rem;
  padding:0.875rem 1.75rem;
  border-radius:10px;
  font-weight:600;
  font-size:1rem;
  transition:all 0.3s ease;
  min-height:48px;
  text-decoration:none;
}

.btn-primary{
  background:var(--mamey);
  color:white;
  box-shadow:0 4px 12px rgba(255,127,80,0.3);
}

.btn-primary:hover{
  background:#ff6a3d;
  box-shadow:0 6px 20px rgba(255,127,80,0.4);
  transform:translateY(-2px);
}

.btn-secondary{
  background:transparent;
  color:var(--text);
  border:2px solid var(--border);
}

.btn-secondary:hover{
  border-color:var(--mamey);
  color:var(--mamey);
  transform:translateY(-2px);
}

.btn-block{
  width:100%;
}

.services-highlight{
  margin-top:2rem;
  padding:1.5rem;
  background:linear-gradient(135deg,rgba(23,190,187,0.05),rgba(10,116,255,0.05));
  border-radius:12px;
  border:1px solid var(--border);
}

.services-title{
  font-size:1.25rem;
  font-weight:700;
  margin-bottom:1rem;
  color:var(--text);
}

.services-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:1rem;
}

.services-list li{
  display:flex;
  align-items:center;
  gap:1rem;
  padding:0.75rem;
  background:var(--bg);
  border-radius:8px;
  transition:transform 0.2s ease,box-shadow 0.2s ease;
}

.services-list li:hover{
  transform:translateX(4px);
  box-shadow:0 2px 8px var(--shadow);
}

.service-icon{
  flex-shrink:0;
  color:var(--mamey);
}

.services-list span{
  font-weight:500;
}

.featured-section{
  display:flex;
  flex-direction:column;
  gap:1.5rem;
}

.section-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:1rem;
}

.section-title{
  font-size:1.75rem;
  font-weight:700;
  color:var(--text);
}

.view-all-link{
  color:var(--azul);
  font-weight:600;
  font-size:0.95rem;
  transition:transform 0.2s ease;
}

.view-all-link:hover{
  transform:translateX(4px);
}

.carousel-container{
  position:relative;
  width:100%;
  max-width:100%;
}

.carousel-wrapper{
  overflow:hidden;
  border-radius:12px;
  width:100%;
}

.carousel-track{
  display:flex;
  gap:1rem;
  transition:transform 0.4s cubic-bezier(0.4,0,0.2,1);
  touch-action:pan-y pinch-zoom;
  width:100%;
}

.carousel-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  background:white;
  color:var(--negro);
  border-radius:50%;
  box-shadow:0 4px 12px var(--shadow);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.5rem;
  z-index:10;
  opacity:0.9;
  transition:opacity 0.3s ease,transform 0.2s ease;
}

.carousel-btn:hover{
  opacity:1;
  transform:translateY(-50%) scale(1.1);
}

.carousel-btn:disabled{
  opacity:0.3;
  cursor:not-allowed;
}

.carousel-prev{left:1rem}
.carousel-next{right:1rem}

.carousel-dots{
  display:flex;
  justify-content:center;
  gap:0.5rem;
  margin-top:1rem;
}

.carousel-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--border);
  border:none;
  padding:0;
  cursor:pointer;
  transition:all 0.3s ease;
}

.carousel-dot.active{
  background:var(--mamey);
  width:28px;
  border-radius:5px;
}

.prop-card{
  flex:0 0 100%;
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:12px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform 0.3s ease,box-shadow 0.3s ease;
  min-height:320px;
}

.prop-card:hover{
  transform:translateY(-4px);
  box-shadow:0 8px 24px var(--shadow);
}

.prop-card.skeleton{
  pointer-events:none;
}

.prop-card img{
  width:100%;
  height:200px;
  object-fit:cover;
  transition:transform 0.4s ease;
}

.prop-card:hover img{
  transform:scale(1.05);
}

.prop-card .body{
  padding:1.25rem;
  flex:1;
  display:flex;
  flex-direction:column;
  gap:0.5rem;
}

.prop-card h4{
  font-size:1.125rem;
  font-weight:700;
  color:var(--text);
}

.prop-card p{
  color:var(--text-secondary);
  font-size:0.95rem;
}

.prop-card .meta{
  margin-top:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:1rem;
  border-top:1px solid var(--border);
}

.prop-card .meta span{
  font-weight:700;
  color:var(--mamey);
  font-size:1.125rem;
}

.prop-card .meta a{
  padding:0.5rem 1.25rem;
  background:var(--azul);
  color:white;
  border-radius:8px;
  font-weight:600;
  font-size:0.9rem;
  transition:all 0.2s ease;
}

.prop-card .meta a:hover{
  background:#0862d9;
  transform:translateY(-2px);
}

.skeleton .body{
  animation:pulse 1.5s ease-in-out infinite;
}

@keyframes pulse{
  0%,100%{opacity:1}
  50%{opacity:0.5}
}

.skeleton img{
  background:linear-gradient(90deg,var(--border) 25%,rgba(0,0,0,0.05) 50%,var(--border) 75%);
  background-size:200% 100%;
  animation:shimmer 1.5s infinite;
}

@keyframes shimmer{
  0%{background-position:200% 0}
  100%{background-position:-200% 0}
}

.skeleton h4,.skeleton p,.skeleton .meta span{
  background:var(--border);
  border-radius:4px;
  color:transparent;
}

.skeleton h4{height:1.5rem;width:80%}
.skeleton p{height:1rem;width:60%}
.skeleton .meta span{height:1.5rem;width:100px}

.features-section{
  padding:5rem 5%;
  background:linear-gradient(180deg,transparent,rgba(23,190,187,0.03));
}

.container{
  max-width:1400px;
  margin:0 auto;
}

.section-title-center{
  text-align:center;
  font-size:2rem;
  font-weight:800;
  margin-bottom:3rem;
  color:var(--text);
}

.features-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:2rem;
}

.feature-card{
  text-align:center;
  padding:2rem;
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:12px;
  transition:transform 0.3s ease,box-shadow 0.3s ease;
}

.feature-card:hover{
  transform:translateY(-8px);
  box-shadow:0 12px 32px var(--shadow);
}

.feature-icon{
  font-size:3rem;
  margin-bottom:1rem;
  display:inline-block;
  transition:transform 0.3s ease;
}

.feature-card:hover .feature-icon{
  transform:scale(1.1) rotate(5deg);
}

.feature-card h3{
  font-size:1.25rem;
  font-weight:700;
  margin-bottom:0.75rem;
  color:var(--text);
}

.feature-card p{
  color:var(--text-secondary);
  line-height:1.6;
}

.footer{
  background:var(--negro);
  color:#e6eef6;
  padding:3rem 5% 2rem;
  margin-top:4rem;
}

.footer-content{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:2rem;
  margin-bottom:2rem;
}

.footer-section h4{
  font-size:1.125rem;
  font-weight:700;
  margin-bottom:1rem;
  color:var(--mamey);
}

.footer-section p{
  color:#9ca3af;
  line-height:1.6;
  margin-bottom:0.5rem;
}

.footer-section nav{
  display:flex;
  flex-direction:column;
  gap:0.5rem;
}

.footer-section nav a{
  color:#9ca3af;
  transition:color 0.2s ease;
}

.footer-section nav a:hover{
  color:var(--mamey);
}

.footer-bottom{
  text-align:center;
  padding-top:2rem;
  border-top:1px solid rgba(255,255,255,0.1);
}

.footer-bottom p{
  color:#6b7280;
  font-size:0.875rem;
}

.whatsapp-float{
  position:fixed;
  right:20px;
  bottom:20px;
  background:var(--turquesa);
  color:white;
  border-radius:50%;
  width:64px;
  height:64px;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
  box-shadow:0 8px 24px rgba(23,190,187,0.4);
  transition:all 0.3s ease;
  animation:float 3s ease-in-out infinite;
}

@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
}

.whatsapp-float:hover{
  transform:scale(1.1);
  box-shadow:0 12px 32px rgba(23,190,187,0.5);
  animation:none;
}

.whatsapp-float:active{
  transform:scale(0.95);
}

.properties-page{
  min-height:calc(100vh - var(--header-height) - 300px);
}

.page-header{
  background:linear-gradient(135deg,rgba(255,127,80,0.08),rgba(10,116,255,0.08));
  padding:3rem 5%;
  border-bottom:1px solid var(--border);
}

.page-title{
  font-size:clamp(2rem,4vw,2.5rem);
  font-weight:800;
  margin-bottom:0.5rem;
  color:var(--text);
}

.page-subtitle{
  font-size:1.125rem;
  color:var(--text-secondary);
}

.properties-content{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:2rem;
}

.filters-sidebar{
  position:sticky;
  top:calc(var(--header-height) + 1rem);
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:12px;
  padding:1.5rem;
  max-height:calc(100vh - var(--header-height) - 2rem);
  overflow-y:auto;
  width:280px;
  flex-shrink:0;
}

.filters-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:1.5rem;
}

.filters-title{
  font-size:1.25rem;
  font-weight:700;
  color:var(--text);
}

.filters-close{
  display:none;
  width:32px;
  height:32px;
  align-items:center;
  justify-content:center;
  border-radius:6px;
  background:var(--border);
  color:var(--text);
  font-size:1.5rem;
  line-height:1;
}

.filters-form{
  display:flex;
  flex-direction:column;
  gap:1.5rem;
}

.filter-group{
  display:flex;
  flex-direction:column;
  gap:0.5rem;
}

.filter-label{
  display:flex;
  align-items:center;
  gap:0.5rem;
  font-weight:600;
  font-size:0.9rem;
  color:var(--text);
}

.filter-icon{
  color:var(--mamey);
  flex-shrink:0;
}

.filter-input,.filter-select{
  width:100%;
  padding:0.75rem;
  border:1px solid var(--border);
  border-radius:8px;
  background:var(--bg);
  color:var(--text);
  font-size:0.95rem;
  transition:border-color 0.2s ease,box-shadow 0.2s ease;
}

.filter-input:focus,.filter-select:focus{
  outline:none;
  border-color:var(--azul);
  box-shadow:0 0 0 3px rgba(10,116,255,0.1);
}

.price-inputs{
  display:flex;
  align-items:center;
  gap:0.5rem;
}

.price-separator{
  color:var(--text-secondary);
  font-weight:600;
}

.filter-actions{
  display:flex;
  flex-direction:column;
  gap:0.75rem;
  margin-top:1rem;
  padding-top:1.5rem;
  border-top:1px solid var(--border);
}

.results-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:1rem;
  padding:1.5rem 0;
}

.results-info{
  flex:1;
}

.results-count{
  font-size:0.95rem;
  color:var(--text-secondary);
  font-weight:500;
}

.results-controls{
  display:flex;
  gap:1rem;
  align-items:center;
}

.filters-toggle{
  display:none;
  align-items:center;
  gap:0.5rem;
  padding:0.75rem 1rem;
  background:var(--border);
  color:var(--text);
  border-radius:8px;
  font-weight:600;
  font-size:0.9rem;
  min-height:44px;
}

.sort-select{
  padding:0.75rem 1rem;
  border:1px solid var(--border);
  border-radius:8px;
  background:var(--bg);
  color:var(--text);
  font-size:0.9rem;
  font-weight:500;
  cursor:pointer;
  transition:border-color 0.2s ease;
  min-height:44px;
}

.sort-select:focus{
  outline:none;
  border-color:var(--azul);
}

.properties-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
  gap:1.5rem;
  animation:fadeIn 0.5s ease-out;
}

.pagination{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
  padding:2rem 0;
  margin-top:auto;
}

.pagination-btn{
  display:flex;
  align-items:center;
  gap:0.5rem;
  padding:0.75rem 1.5rem;
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:8px;
  color:var(--text);
  font-weight:600;
  font-size:0.95rem;
  transition:all 0.2s ease;
  min-height:44px;
}

.pagination-btn:hover:not(:disabled){
  background:var(--mamey);
  color:white;
  border-color:var(--mamey);
  transform:translateY(-2px);
}

.pagination-btn:disabled{
  opacity:0.4;
  cursor:not-allowed;
}

.pagination-btn:disabled:hover{
  transform:none;
}

.pagination-info{
  flex:1;
  text-align:center;
}

.pagination-text{
  font-size:0.95rem;
  color:var(--text-secondary);
  font-weight:500;
}

.pagination-text span{
  font-weight:700;
  color:var(--text);
}

.empty-state{
  text-align:center;
  padding:4rem 2rem;
  color:var(--text-secondary);
}

.empty-state-icon{
  font-size:4rem;
  margin-bottom:1rem;
  opacity:0.5;
}

.empty-state-title{
  font-size:1.5rem;
  font-weight:700;
  color:var(--text);
  margin-bottom:0.5rem;
}

.empty-state-text{
  font-size:1rem;
  line-height:1.6;
}

@media(max-width:1024px){
  .container{
    display:flex;
    gap:2rem;
    padding:2rem 4%;
  }

  .filters-sidebar{
    width:240px;
  }
}

@media(max-width:900px){
  .header{
    padding:1rem 4%;
  }

  .mobile-menu-toggle{
    display:flex;
  }

  .nav-links{
    position:fixed;
    top:var(--header-height);
    left:0;
    right:0;
    flex-direction:column;
    background:var(--bg);
    border-bottom:1px solid var(--border);
    padding:1rem;
    gap:0.5rem;
    transform:translateY(-100%);
    opacity:0;
    visibility:hidden;
    transition:transform 0.3s ease,opacity 0.3s ease,visibility 0.3s ease;
    box-shadow:0 4px 12px var(--shadow);
    max-height:calc(100vh - var(--header-height));
    overflow-y:auto;
  }

  .nav-links.open{
    transform:translateY(0);
    opacity:1;
    visibility:visible;
  }

  .nav-links a{
    width:100%;
    padding:0.875rem 1rem;
    border-radius:8px;
    background:var(--border);
  }

  .nav-links a[aria-current="page"]::after{
    display:none;
  }

  .nav-controls{
    margin-left:auto;
  }

  .container{
    flex-direction:column;
  }

  .filters-sidebar{
    position:fixed;
    top:0;
    left:0;
    bottom:0;
    width:85%;
    max-width:320px;
    z-index:1001;
    transform:translateX(-100%);
    transition:transform 0.3s ease;
    max-height:100vh;
    border-radius:0;
    border:none;
    border-right:1px solid var(--border);
  }

  .filters-sidebar.open{
    transform:translateX(0);
  }

  .filters-close{
    display:flex;
  }

  .filters-toggle{
    display:flex;
  }

  .page-header{
    padding:2rem 4%;
  }

  .properties-grid{
    grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  }

.hero{
    grid-template-columns:1fr;
    gap:2.5rem;
    padding:2.5rem 4% 3rem;
  }

  .hero-content{
    order:1;
  }

  .featured-section{
    order:2;
  }

  .services-highlight{
    margin-top:1.5rem;
    padding:1.25rem;
  }
  
  .services-title{
    font-size:1.125rem;
    margin-bottom:0.875rem;
  }
  
  .services-list{
    gap:0.875rem;
  }
  
  .services-list li{
    padding:0.625rem;
  }

  .carousel-btn{
    width:40px;
    height:40px;
    font-size:1.25rem;
  }

  .carousel-container{
    margin:0 -4%;
    padding:0 4%;
    width:calc(100% + 8%);
  }
  
  .carousel-wrapper{
    border-radius:0;
  }
  
  .carousel-track{
    gap:0.75rem;
  }
  
  .section-header{
    padding:0 4%;
  }
  
  .carousel-dots{
    padding:0 4%;
  }

  .carousel-prev{left:0.5rem}
  .carousel-next{right:0.5rem}

  .features-section{
    padding:3rem 4%;
  }

  .features-grid{
    grid-template-columns:1fr;
  }

  .footer{
    padding:2rem 4% 1.5rem;
  }

  .footer-content{
    grid-template-columns:1fr;
    gap:1.5rem;
  }

  .whatsapp-float{
    width:56px;
    height:56px;
    right:16px;
    bottom:16px;
  }

  .whatsapp-float svg{
    width:28px;
    height:28px;
  }
}

@media(max-width:640px){
  .hero-cta{
    flex-direction:column;
  }

  .btn{
    width:100%;
    justify-content:center;
  }

  .hero-content{
    text-align:center;
    align-items:center;
  }
  
  .hero-badge{
    margin:0 auto;
  }
  .section-header{
    flex-direction:column;
    align-items:flex-start;
  }

  .carousel-btn{
    display:none;
  }

  .prop-card{
    min-height:280px;
  }

  .prop-card img{
    height:160px;
  }

  .properties-grid{
    grid-template-columns:1fr;
  }

  .pagination{
    flex-direction:column;
    gap:1rem;
  }

  .pagination-btn{
    width:100%;
  }

  .results-header{
    flex-direction:column;
    align-items:stretch;
  }

  .results-controls{
    flex-direction:column;
  }

  .filters-toggle,.sort-select{
    width:100%;
  }

  .price-inputs{
    flex-direction:column;
  }

  .price-separator{
    display:none;
  }
}

@media(min-width:901px){
  .prop-card{
    flex:0 0 calc(50% - 0.5rem);
  }

  .container{
    display:flex;
    gap:2rem;
    padding:2rem 5%;
  }
}

@media(min-width:1200px){
  .carousel-track{
    gap:1.5rem;
  }

  .prop-card{
    flex:0 0 calc(33.333% - 1rem);
  }

  .properties-grid{
    grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
  }
}





/* services.css - Enhanced Professional Styles */

/* ========== Page Layout ========== */
.services-page {
  min-height: 100vh;
  padding-bottom: 2rem;
}

.page-header .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* ========== Animations ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-delay {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Stats Section ========== */
.stats-section {
  padding: 4rem 5%;
  background: linear-gradient(135deg, rgba(255,127,80,0.03), rgba(10,116,255,0.03));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mamey), var(--azul));
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.stat-card:hover::before,
.stat-card.visible::before {
  transform: scaleX(1);
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-color: var(--mamey);
}

.stat-icon {
  margin-bottom: 1rem;
  color: var(--mamey);
  transition: transform 0.4s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
}

.stat-icon svg {
  width: 40px;
  height: 40px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin: 1rem 0;
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ========== Services Section ========== */
.services-section {
  padding: 5rem 5%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,127,80,0.05), rgba(10,116,255,0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border-color: var(--mamey);
}

.service-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.service-card:hover .service-card-icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--mamey);
  color: white;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 1;
}

.service-badge-new {
  background: var(--azul);
}

.service-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.service-card-desc {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin: 0.5rem 0;
  position: relative;
  z-index: 1;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.5;
}

.feature-check {
  color: var(--turquesa);
  flex-shrink: 0;
}

.service-cta {
  margin-top: auto;
  position: relative;
  z-index: 1;
}

/* ========== Process Section ========== */
.process-section {
  padding: 5rem 5%;
  background: var(--bg);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border-color: var(--mamey);
}

.process-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 16px rgba(255,127,80,0.3);
  transition: transform 0.4s ease;
}

.process-step:hover .process-step-number {
  transform: scale(1.15);
}

.process-step-icon {
  color: var(--mamey);
  margin-bottom: 1rem;
  transition: transform 0.4s ease;
}

.process-step:hover .process-step-icon {
  transform: scale(1.1) rotate(5deg);
}

.process-step-icon svg {
  width: 48px;
  height: 48px;
}

.process-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.process-step-desc {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

.process-step-connector {
  display: none;
}

/* ========== Testimonials Section ========== */
.testimonials-section {
  padding: 5rem 5%;
  background: linear-gradient(180deg, transparent, rgba(23,190,187,0.03));
}

.testimonials-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.testimonials-track {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  opacity: 0;
  transform: scale(0.95);
}

.testimonial-card.active {
  display: flex;
  animation: scaleIn 0.5s ease forwards;
  opacity: 1;
  transform: scale(1);
}

.testimonial-rating {
  display: flex;
  gap: 0.375rem;
  color: #fbbf24;
}

.testimonial-rating svg {
  width: 20px;
  height: 20px;
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  position: relative;
  padding-left: 2rem;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 4rem;
  color: var(--mamey);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  color: var(--text);
  font-size: 1rem;
}

.author-role {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  cursor: pointer;
}

.testimonial-nav:hover {
  background: var(--mamey);
  border-color: var(--mamey);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.testimonial-prev {
  left: -24px;
}

.testimonial-next {
  right: -24px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background: var(--mamey);
  width: 32px;
  border-radius: 6px;
}

.testimonial-dot:hover {
  background: var(--azul);
}

/* ========== Service Modal ========== */
.service-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.3s ease;
}

.service-modal[aria-hidden="false"] {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  position: relative;
  background: var(--bg);
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: scaleIn 0.3s ease;
  padding: 2.5rem;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  background: #ef4444;
  color: white;
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.modal-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 24px rgba(255,127,80,0.3);
}

.modal-icon svg {
  width: 48px;
  height: 48px;
}

.modal-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========== Form Styles ========== */
.service-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-progress {
  background: var(--border);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.progress-bar {
  height: 8px;
  background: rgba(0,0,0,0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--mamey), var(--azul));
  border-radius: 4px;
  transition: width 0.4s ease;
  box-shadow: 0 0 8px rgba(255,127,80,0.5);
}

.progress-text {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.form-step {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  animation: slideInRight 0.4s ease;
}

.form-step.active {
  display: flex;
}

.form-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.form-icon {
  color: var(--mamey);
  flex-shrink: 0;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--azul);
  box-shadow: 0 0 0 4px rgba(10,116,255,0.1);
}

.form-input.error,
.form-textarea.error {
  border-color: #ef4444;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-error {
  color: #ef4444;
  font-size: 0.875rem;
  font-weight: 500;
  min-height: 20px;
}

.char-counter {
  text-align: right;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.time-preference {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}

.radio-option {
  position: relative;
  cursor: pointer;
}

.radio-option input {
  position: absolute;
  opacity: 0;
}

.radio-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.radio-option input:checked + span {
  border-color: var(--azul);
  background: rgba(10,116,255,0.1);
  color: var(--azul);
}

.radio-option:hover span {
  border-color: var(--mamey);
  transform: translateY(-2px);
}

.radio-option svg {
  width: 20px;
  height: 20px;
}

.form-summary {
  background: linear-gradient(135deg, rgba(255,127,80,0.05), rgba(10,116,255,0.05));
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-label {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.summary-value {
  font-weight: 700;
  color: var(--text);
  font-size: 0.95rem;
  text-align: right;
}

.checkbox-label {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  cursor: pointer;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.checkbox-label:hover {
  border-color: var(--azul);
  background: rgba(10,116,255,0.02);
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label span {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--border);
}

.form-actions .btn {
  flex: 1;
  min-width: 140px;
}

.form-actions .btn-block {
  flex-basis: 100%;
  width: 100%;
}

/* ========== Form Messages ========== */
.form-message {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  gap: 1.5rem;
  animation: scaleIn 0.5s ease;
}

.form-message svg {
  color: var(--turquesa);
}

.form-message.error svg {
  color: #ef4444;
}

.form-message h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.form-message p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.success-animation {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--turquesa), var(--azul));
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.6s ease;
}

.success-animation svg {
  color: white;
}

/* ========== Responsive Design ========== */
@media (max-width: 900px) {
  .stats-section {
    padding: 3rem 4%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-card {
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .services-section {
    padding: 3rem 4%;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem;
  }

  .process-section {
    padding: 3rem 4%;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .process-step {
    padding: 1.5rem 1rem;
  }

  .testimonials-section {
    padding: 3rem 4%;
  }

  .testimonial-nav {
    width: 40px;
    height: 40px;
  }

  .testimonial-prev {
    left: -20px;
  }

  .testimonial-next {
    right: -20px;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
  }

  .testimonial-text {
    font-size: 1rem;
    padding-left: 1.5rem;
  }

  .modal-content {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }

  .modal-close {
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
  }

  .modal-icon {
    width: 64px;
    height: 64px;
  }

  .modal-icon svg {
    width: 36px;
    height: 36px;
  }

  .time-preference {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .testimonial-nav {
    display: none;
  }

  .modal-content {
    max-height: 95vh;
    border-radius: 16px;
  }

  .form-step-title {
    font-size: 1.125rem;
  }
}

/* ========== Print Styles ========== */
@media print {
  .header,
  .whatsapp-float,
  .service-cta,
  .testimonial-nav,
  .testimonial-dots {
    display: none;
  }

  .service-card,
  .testimonial-card {
    break-inside: avoid;
  }
}


/* about.css - Professional About Page Styles */

/* ========== Page Layout ========== */
.about-page {
  min-height: 100vh;
}

/* ========== Hero Section ========== */
.about-hero {
  padding: 5rem 5% 4rem;
  background: linear-gradient(135deg, rgba(255,127,80,0.05), rgba(10,116,255,0.05));
  border-bottom: 1px solid var(--border);
}

.about-hero .container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-block;
  width: fit-content;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--turquesa), var(--azul));
  color: white;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.hero-image {
  position: relative;
}

.image-placeholder {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.image-placeholder:hover {
  transform: translateY(-8px);
}

/* ========== Mission & Vision Section ========== */
.mission-vision-section {
  padding: 5rem 5%;
  background: var(--bg);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.mv-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mamey), var(--azul));
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.mv-card:hover::before,
.mv-card.visible::before {
  transform: scaleX(1);
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border-color: var(--mamey);
}

.mv-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 2rem;
  transition: transform 0.4s ease;
}

.mv-card:hover .mv-icon {
  transform: scale(1.1) rotate(-5deg);
}

.mv-card h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}

.mv-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ========== Values Section ========== */
.values-section {
  padding: 5rem 5%;
  background: linear-gradient(180deg, transparent, rgba(23,190,187,0.03));
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 3rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border-color: var(--turquesa);
}

.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,127,80,0.1), rgba(10,116,255,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mamey);
  transition: all 0.4s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.15) rotate(10deg);
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  color: white;
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ========== Team Section ========== */
.team-section {
  padding: 5rem 5%;
  background: var(--bg);
}

.section-header-text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255,127,80,0.1);
  color: var(--mamey);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-top: 1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.team-member {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border-color: var(--azul);
}

.member-photo {
  margin-bottom: 2rem;
}

.photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,127,80,0.2), rgba(10,116,255,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mamey);
  transition: all 0.4s ease;
  border: 3px solid var(--border);
}

.team-member:hover .photo-placeholder {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  color: white;
  border-color: var(--azul);
}

.member-info {
  width: 100%;
}

.member-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.member-role {
  color: var(--mamey);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.member-bio {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.member-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--azul);
  color: white;
  transform: translateY(-3px);
}

.member-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--border);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ========== Why Us Section ========== */
.why-us-section {
  padding: 5rem 5%;
  background: linear-gradient(135deg, rgba(255,127,80,0.03), rgba(10,116,255,0.03));
}

.why-us-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-us-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-us-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.lead-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: start;
}

.feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--turquesa), var(--azul));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

.why-us-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-box {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-color: var(--mamey);
}

.stat-box .stat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,127,80,0.1), rgba(10,116,255,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mamey);
  transition: all 0.4s ease;
}

.stat-box:hover .stat-icon {
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  color: white;
  transform: scale(1.1);
}

.stat-box .stat-value {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-box .stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
}

/* ========== CTA Section ========== */
.cta-section {
  padding: 5rem 5%;
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
}

.cta-content p {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.cta-section .btn-primary {
  background: white;
  color: var(--mamey);
}

.cta-section .btn-primary:hover {
  background: var(--bg);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.cta-section .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-section .btn-secondary:hover {
  background: white;
  color: var(--azul);
  transform: translateY(-3px);
}

/* ========== Responsive Design ========== */
@media (max-width: 1024px) {
  .about-hero .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-image {
    order: -1;
  }

  .image-placeholder {
    height: 300px;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .why-us-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-us-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .about-hero {
    padding: 3rem 4% 2rem;
  }

  .mission-vision-section,
  .values-section,
  .team-section,
  .why-us-section,
  .cta-section {
    padding: 3rem 4%;
  }

  .hero-title {
    font-size: 2rem;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .mv-card {
    padding: 2rem 1.5rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .value-card {
    padding: 2rem 1.5rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team-member {
    padding: 2rem 1.5rem;
  }

  .why-us-text h2 {
    font-size: 2rem;
  }

  .features-list {
    gap: 1.25rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-large {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding: 2rem 4%;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .image-placeholder {
    height: 250px;
  }

  .mv-card {
    padding: 1.5rem;
  }

  .mv-icon {
    width: 56px;
    height: 56px;
  }

  .mv-card h2 {
    font-size: 1.5rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .section-title-center {
    font-size: 1.75rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .photo-placeholder {
    width: 100px;
    height: 100px;
  }

  .member-name {
    font-size: 1.125rem;
  }

  .why-us-stats {
    grid-template-columns: 1fr;
  }

  .stat-box {
    padding: 1.5rem;
  }

  .stat-box .stat-value {
    font-size: 2rem;
  }

  .cta-content h2 {
    font-size: 1.75rem;
  }

  .cta-content p {
    font-size: 1rem;
  }
}

/* ========== Animations ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-delay {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Print Styles ========== */
@media print {
  .header,
  .whatsapp-float,
  .cta-section {
    display: none;
  }

  .about-hero,
  .mission-vision-section,
  .values-section,
  .team-section,
  .why-us-section {
    page-break-inside: avoid;
  }
}


/* blog.css - Professional Blog Page Styles */

/* ========== Page Layout ========== */
.blog-page {
  min-height: 100vh;
  background: var(--bg);
}

/* ========== Hero Section ========== */
.blog-hero {
  padding: 4rem 5% 3rem;
  background: linear-gradient(135deg, rgba(255,127,80,0.05), rgba(10,116,255,0.05));
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.blog-hero .container {
  max-width: 900px;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--turquesa), var(--azul));
  color: white;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 700px;
}

/* ========== Search & Filters Section ========== */
.search-filters-section {
  padding: 2rem 5%;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--header-height);
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(var(--bg-rgb), 0.95);
}

.search-bar {
  max-width: 1200px;
  margin: 0 auto 1.5rem;
}

.search-input-wrapper {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 0.875rem 3rem 0.875rem 3rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--azul);
  box-shadow: 0 0 0 4px rgba(10,116,255,0.1);
}

.search-clear {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.search-clear:hover {
  background: var(--mamey);
  color: white;
}

.filters-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex: 1;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: var(--mamey);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  color: white;
  border-color: var(--mamey);
}

.filter-btn svg {
  width: 16px;
  height: 16px;
}

.filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 0.4rem;
  background: rgba(0,0,0,0.1);
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
}

.filter-btn.active .filter-count {
  background: rgba(255,255,255,0.3);
}

.sort-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sort-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.sort-select {
  padding: 0.625rem 1rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sort-select:focus {
  outline: none;
  border-color: var(--azul);
}

/* ========== Featured Section ========== */
.featured-section {
  padding: 3rem 5%;
  background: var(--bg);
}

.section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.featured-post {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.featured-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border-color: var(--mamey);
}

.featured-image {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-post:hover .featured-image img {
  transform: scale(1.05);
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,127,80,0.2), rgba(10,116,255,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-content {
  padding: 2.5rem 2.5rem 2.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.post-category {
  display: inline-block;
  width: fit-content;
  padding: 0.4rem 0.9rem;
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  color: white;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}

.featured-excerpt {
  font-size: 1.rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-item svg {
  width: 16px;
  height: 16px;
  color: var(--mamey);
}

/* ========== Posts Section ========== */
.posts-section {
  padding: 3rem 5% 5rem;
  background: var(--bg);
}

.posts-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.results-count {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ========== Loading State ========== */
.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  gap: 1.5rem;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--border);
  border-top-color: var(--mamey);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-state p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* ========== Posts Grid ========== */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.post-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-color: var(--mamey);
}

.post-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.post-card:hover .post-image img {
  transform: scale(1.1);
}

.post-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.post-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--azul);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.read-more:hover {
  gap: 0.75rem;
  color: var(--mamey);
}

.read-more svg {
  width: 16px;
  height: 16px;
}

/* ========== Empty State ========== */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.empty-state svg {
  color: var(--text-secondary);
  opacity: 0.5;
}

.empty-state h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.empty-state p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 400px;
}

/* ========== Pagination ========== */
.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

.pagination-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
  background: var(--mamey);
  color: white;
  border-color: var(--mamey);
  transform: translateY(-2px);
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pagination-btn svg {
  width: 20px;
  height: 20px;
}

.pagination-info {
  flex: 1;
  text-align: center;
}

.pagination-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.pagination-text span {
  font-weight: 700;
  color: var(--text);
}

/* ========== Newsletter Section ========== */
.newsletter-section {
  padding: 4rem 5%;
  background: linear-gradient(135deg, var(--mamey), var(--azul));
}

.newsletter-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid rgba(255,255,255,0.2);
}

.newsletter-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.newsletter-text {
  color: white;
}

.newsletter-text h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.newsletter-text p {
  font-size: 1rem;
  opacity: 0.95;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  min-width: 350px;
}

.newsletter-input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.7);
}

.newsletter-input:focus {
  outline: none;
  border-color: white;
  background: rgba(255,255,255,0.25);
}

.newsletter-form .btn-primary {
  background: white;
  color: var(--mamey);
  white-space: nowrap;
  flex-shrink: 0;
}

.newsletter-form .btn-primary:hover {
  background: var(--bg);
  transform: translateY(-2px);
}

.newsletter-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  color: white;
  font-weight: 600;
  animation: slideInRight 0.5s ease;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.newsletter-success svg {
  width: 24px;
  height: 24px;
}

/* ========== Responsive Design ========== */
@media (max-width: 1024px) {
  .featured-post {
    grid-template-columns: 1fr;
  }

  .featured-image {
    height: 300px;
  }

  .featured-content {
    padding: 2rem;
  }

  .featured-title {
    font-size: 1.75rem;
  }

  .posts-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .newsletter-content {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .newsletter-form {
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 900px) {
  .blog-hero {
    padding: 3rem 4% 2rem;
  }

  .search-filters-section {
    padding: 1.5rem 4%;
  }

  .filters-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-group {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
  }

  .filter-group::-webkit-scrollbar {
    height: 4px;
  }

  .filter-group::-webkit-scrollbar-track {
    background: var(--border);
    border-radius: 2px;
  }

  .filter-group::-webkit-scrollbar-thumb {
    background: var(--mamey);
    border-radius: 2px;
  }

  .sort-group {
    width: 100%;
    justify-content: space-between;
  }

  .sort-select {
    flex: 1;
  }

  .featured-section,
  .posts-section {
    padding: 2rem 4%;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .featured-title {
    font-size: 1.5rem;
  }

  .posts-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .posts-grid {
    grid-template-columns: 1fr;
  }

  .pagination {
    flex-direction: column;
  }

  .pagination-btn {
    width: 100%;
  }

  .newsletter-section {
    padding: 3rem 4%;
  }

  .newsletter-content {
    padding: 2rem;
  }

  .newsletter-icon {
    width: 56px;
    height: 56px;
  }

  .newsletter-text h2 {
    font-size: 1.5rem;
  }

  .newsletter-form {
    flex-direction: column;
    min-width: auto;
  }

  .newsletter-form .btn-primary {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .blog-hero {
    padding: 2rem 4%;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .search-input {
    padding: 0.75rem 2.5rem;
    font-size: 0.9rem;
  }

  .filter-btn {
    padding: 0.5rem 0.875rem;
    font-size: 0.85rem;
  }

  .featured-image {
    height: 240px;
  }

  .featured-content {
    padding: 1.5rem;
    gap: 1rem;
  }

  .featured-title {
    font-size: 1.25rem;
  }

  .featured-excerpt {
    font-size: 0.9rem;
  }

  .post-meta {
    font-size: 0.85rem;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .post-image {
    height: 180px;
  }

  .post-body {
    padding: 1.25rem;
  }

  .post-title {
    font-size: 1.125rem;
  }

  .newsletter-content {
    padding: 1.5rem;
  }

  .newsletter-icon {
    display: none;
  }

  .newsletter-text h2 {
    font-size: 1.25rem;
  }

  .newsletter-text p {
    font-size: 0.9rem;
  }
}

/* ========== Animations ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s ease-out;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Print Styles ========== */
@media print {
  .header,
  .whatsapp-float,
  .search-filters-section,
  .newsletter-section,
  .pagination {
    display: none;
  }

  .post-card,
  .featured-post {
    break-inside: avoid;
    border: 1px solid #ddd;
  }

  .posts-grid {
    grid-template-columns: 1fr;
  }
}



/* contact.css - Professional Contact Page Styles */

/* ========== Page Layout ========== */
.contact-page {
  min-height: 100vh;
  background: var(--bg);
}

/* ========== Hero Section ========== */
.page-header {
  background: linear-gradient(135deg, rgba(255,127,80,0.05), rgba(10,116,255,0.05));
  padding: 4rem 5% 3rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-header .container {
  max-width: 900px;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--turquesa), var(--azul));
  color: white;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.page-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.page-subtitle {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 700px;
}

/* ========== Contact Info Section ========== */
.contact-info-section {
  padding: 4rem 5%;
  background: var(--bg);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.info-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border-color: var(--mamey);
}

.info-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.4s ease;
}

.info-card:hover .info-icon {
  transform: scale(1.1) rotate(-5deg);
}

.info-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.info-detail {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
}

.info-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.info-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 2px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.info-link:hover {
  background: var(--azul);
  color: white;
  border-color: var(--azul);
  transform: translateY(-2px);
}

/* ========== Contact Form Section ========== */
.contact-form-section {
  padding: 5rem 5%;
  background: linear-gradient(180deg, transparent, rgba(23,190,187,0.03));
}

.form-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255,127,80,0.1);
  color: var(--mamey);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.contact-form {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.form-icon {
  color: var(--mamey);
  flex-shrink: 0;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--azul);
  box-shadow: 0 0 0 4px rgba(10,116,255,0.1);
}

.form-input.error,
.form-textarea.error {
  border-color: #ef4444;
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
}

.form-select {
  cursor: pointer;
}

.form-error {
  color: #ef4444;
  font-size: 0.875rem;
  font-weight: 500;
  min-height: 20px;
}

.char-counter {
  text-align: right;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.checkbox-label {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  cursor: pointer;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.checkbox-label:hover {
  border-color: var(--azul);
  background: rgba(10,116,255,0.02);
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label span {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text);
}

.checkbox-label .link {
  color: var(--azul);
  text-decoration: underline;
  font-weight: 600;
}

.checkbox-label .link:hover {
  color: var(--mamey);
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  flex: 1;
}

/* ========== Form Messages ========== */
.form-message {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  gap: 1.5rem;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.form-message svg {
  color: var(--turquesa);
}

.form-message.error svg {
  color: #ef4444;
}

.form-message h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
}

.form-message p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 500px;
}

.success-animation {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--turquesa), var(--azul));
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.6s ease;
}

.success-animation svg {
  color: white;
}

/* ========== Map Section ========== */
.map-section {
  padding: 5rem 5%;
  background: var(--bg);
}

.map-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title-center {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.map-placeholder {
  height: 400px;
  background: linear-gradient(135deg, rgba(255,127,80,0.1), rgba(10,116,255,0.1));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
}

.map-placeholder svg {
  color: var(--mamey);
  opacity: 0.5;
}

.map-placeholder p {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.map-placeholder small {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ========== FAQ Section ========== */
.faq-section {
  padding: 5rem 5%;
  background: linear-gradient(135deg, rgba(255,127,80,0.03), rgba(10,116,255,0.03));
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--mamey);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--mamey);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--mamey);
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.faq-answer a {
  color: var(--azul);
  font-weight: 600;
  text-decoration: underline;
}

.faq-answer a:hover {
  color: var(--mamey);
}

/* ========== Animations ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s ease-out;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Responsive Design ========== */
@media (max-width: 900px) {
  .page-header {
    padding: 3rem 4% 2rem;
  }

  .contact-info-section {
    padding: 3rem 4%;
  }

  .contact-info-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }

  .info-card {
    padding: 2rem 1.5rem;
  }

  .info-icon {
    width: 64px;
    height: 64px;
  }

  .contact-form-section {
    padding: 3rem 4%;
  }

  .contact-form {
    padding: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }

  .btn-large {
    width: 100%;
  }

  .map-section,
  .faq-section {
    padding: 3rem 4%;
  }

  .map-placeholder {
    height: 300px;
  }

  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }

  .faq-question[aria-expanded="true"] + .faq-answer {
    padding: 0 1.5rem 1.25rem;
  }
}

@media (max-width: 640px) {
  .page-header {
    padding: 2rem 4%;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .page-title {
    font-size: 1.75rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    padding: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .form-label {
    font-size: 0.875rem;
  }

  .form-input,
  .form-textarea,
  .form-select {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  .checkbox-label {
    padding: 0.875rem;
  }

  .checkbox-label span {
    font-size: 0.85rem;
  }

  .form-actions {
    padding-top: 1.5rem;
  }

  .btn-large {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .map-placeholder {
    height: 250px;
    padding: 1.5rem;
  }

  .map-placeholder p {
    font-size: 1rem;
  }

  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }

  .faq-question[aria-expanded="true"] + .faq-answer {
    padding: 0 1.25rem 1rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }
}

/* ========== Print Styles ========== */
@media print {
  .header,
  .whatsapp-float,
  .form-actions,
  .faq-section {
    display: none;
  }

  .contact-form {
    border: 1px solid #ddd;
  }

  .info-card {
    break-inside: avoid;
    border: 1px solid #ddd;
  }
}


/* property.css - Professional Property Detail Page Styles */

/* ========== Page Layout ========== */
.property-page {
  min-height: 100vh;
  background: var(--bg);
}

/* ========== Breadcrumbs ========== */
.breadcrumbs {
  padding: 1rem 5%;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--mamey);
}

.breadcrumbs .separator {
  color: var(--text-secondary);
}

.breadcrumbs .current {
  color: var(--text);
  font-weight: 600;
}

/* ========== Loading State ========== */
.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  gap: 1.5rem;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--border);
  border-top-color: var(--mamey);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading-state p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* ========== Error State ========== */
.error-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  gap: 1.5rem;
  text-align: center;
}

.error-state svg {
  color: #ef4444;
}

.error-state h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
}

.error-state p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 400px;
}

/* ========== Property Content ========== */
.property-content {
  padding: 2rem 5%;
}

/* ========== Property Header ========== */
.property-header {
  margin-bottom: 2rem;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.property-badge {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: linear-gradient(135deg, var(--turquesa), var(--azul));
  color: white;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.property-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.property-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 1rem;
}

.property-location svg {
  color: var(--mamey);
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  gap: 0.5rem;
}

.property-price {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* ========== Property Layout ========== */
.property-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  max-width: 1600px;
  margin: 0 auto;
}

.property-main {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* ========== Gallery Section ========== */
.gallery-section {
  position: relative;
}

.gallery-main {
  width: 100%;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--border);
  position: relative;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-main:hover img {
  transform: scale(1.05);
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(255,127,80,0.1), rgba(10,116,255,0.1));
}

.image-placeholder svg {
  color: var(--mamey);
  opacity: 0.5;
}

.image-placeholder p {
  color: var(--text-secondary);
  font-weight: 600;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.gallery-thumb {
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-thumb:hover {
  border-color: var(--mamey);
}

.gallery-thumb:hover img {
  transform: scale(1.1);
}

.gallery-thumb.active {
  border-color: var(--azul);
}

.gallery-nav {
  position: absolute;
  top: 250px;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}

.gallery-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  color: var(--negro);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.gallery-btn:hover {
  background: var(--mamey);
  color: white;
  transform: scale(1.1);
}

.gallery-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ========== Features Section ========== */
.features-section {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(255,127,80,0.05), rgba(10,116,255,0.05));
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-info {
  flex: 1;
}

.feature-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.feature-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

/* ========== Description Section ========== */
.description-section {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}

.description-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}

.description-content p {
  margin-bottom: 1rem;
}

.description-content p:last-child {
  margin-bottom: 0;
}

/* ========== Amenities Section ========== */
.amenities-section {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.amenity-item:hover {
  border-color: var(--turquesa);
  transform: translateX(4px);
}

.amenity-icon {
  color: var(--turquesa);
  flex-shrink: 0;
}

.amenity-name {
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}

/* ========== Map Section ========== */
.map-section {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
}

.map-placeholder,
#map {
  height: 400px;
  width: 100%;
  background: linear-gradient(135deg, rgba(255,127,80,0.1), rgba(10,116,255,0.1));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.map-placeholder svg {
  color: var(--mamey);
  opacity: 0.5;
}

.map-placeholder p {
  color: var(--text-secondary);
  font-weight: 600;
}

/* ========== Sidebar ========== */
.property-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sticky-card {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
}

.contact-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.card-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border);
}

.card-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.card-header p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
}

.form-icon {
  color: var(--mamey);
  flex-shrink: 0;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--azul);
  box-shadow: 0 0 0 3px rgba(10,116,255,0.1);
}

.form-input.error,
.form-textarea.error {
  border-color: #ef4444;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.form-select {
  cursor: pointer;
}

.form-error {
  color: #ef4444;
  font-size: 0.8rem;
  font-weight: 500;
  min-height: 16px;
}

.btn-block {
  width: 100%;
}

.form-message {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem 1rem;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.form-message svg {
  color: var(--turquesa);
}

.form-message.error svg {
  color: #ef4444;
}

.form-message h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
}

.form-message p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ========== Info Card ========== */
.info-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
}

.info-card h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: linear-gradient(135deg, rgba(255,127,80,0.03), rgba(10,116,255,0.03));
  border-radius: 8px;
}

.info-label {
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.info-value {
  font-weight: 700;
  color: var(--text);
  font-size: 0.9rem;
  text-align: right;
}

/* ========== Animations ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s ease-out;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Responsive Design ========== */
@media (max-width: 1200px) {
  .property-layout {
    grid-template-columns: 1fr 360px;
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .property-content {
    padding: 1.5rem 4%;
  }

  .property-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sticky-card {
    position: static;
  }

  .header-top {
    flex-direction: column;
    gap: 1rem;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .gallery-main {
    height: 400px;
  }

  .gallery-nav {
    top: 200px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }

  .gallery-thumb {
    height: 80px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .property-sidebar {
    order: -1;
  }

  .contact-card {
    padding: 1.5rem;
  }
}

@media (max-width: 640px) {
  .breadcrumbs {
    padding: 0.75rem 4%;
  }

  .breadcrumbs .container {
    font-size: 0.8rem;
  }

  .property-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.75rem;
  }

  .property-title {
    font-size: 1.5rem;
  }

  .property-location {
    font-size: 0.9rem;
  }

  .property-price {
    font-size: 1.75rem;
  }

  .gallery-main {
    height: 300px;
    border-radius: 12px;
  }

  .gallery-nav {
    top: 150px;
  }

  .gallery-btn {
    width: 40px;
    height: 40px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.75rem;
  }

  .gallery-thumb {
    height: 70px;
  }

  .features-section,
  .description-section,
  .amenities-section,
  .map-section {
    padding: 1.5rem;
  }

  .section-title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-item {
    flex-direction: row;
    text-align: left;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .map-placeholder,
  #map {
    height: 300px;
  }

  .contact-card {
    padding: 1.25rem;
  }

  .card-header {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .card-header h3 {
    font-size: 1.125rem;
  }

  .contact-form {
    gap: 1rem;
  }

  .form-input,
  .form-textarea,
  .form-select {
    padding: 0.625rem 0.875rem;
    font-size: 0.85rem;
  }

  .info-card {
    padding: 1.25rem;
  }
}

/* ========== Print Styles ========== */
@media print {
  .header,
  .whatsapp-float,
  .header-actions,
  .gallery-nav,
  .gallery-thumbs,
  .contact-form,
  .footer {
    display: none;
  }

  .property-layout {
    grid-template-columns: 1fr;
  }

  .gallery-main {
    height: auto;
    max-height: 400px;
  }

  .property-content {
    padding: 0;
  }
}




/* ===================================== */
/* TAGS SECTION */
/* ===================================== */
.tags-section {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.tag-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(255,127,80,0.1), rgba(10,116,255,0.1));
  border: 1px solid var(--border-color);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.tag-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: var(--mamey);
}

.tag-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mamey);
  flex-shrink: 0;
}

.tag-name {
  white-space: nowrap;
}

@media (max-width: 600px) {
  .tags-container {
    gap: 8px;
  }
  
  .tag-item {
    padding: 6px 12px;
    font-size: 13px;
  }
}



/* ===================================== */
/* TAGS SECTION */
/* ===================================== */
.tags-section {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.tags-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.tag-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: linear-gradient(135deg, rgba(255,127,80,0.12), rgba(10,116,255,0.12));
  border: 2px solid transparent;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.tag-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,127,80,0.2), rgba(10,116,255,0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.tag-item:hover::before {
  opacity: 1;
}

.tag-item:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 20px rgba(255, 127, 80, 0.25);
  border-color: var(--mamey);
}

.tag-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mamey);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(255, 127, 80, 0.3));
}

.tag-name {
  white-space: nowrap;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Dark theme adjustments */
[data-theme="dark"] .tag-item {
  background: linear-gradient(135deg, rgba(255,127,80,0.18), rgba(10,116,255,0.18));
  border-color: rgba(255, 127, 80, 0.3);
}

[data-theme="dark"] .tag-item:hover {
  background: linear-gradient(135deg, rgba(255,127,80,0.25), rgba(10,116,255,0.25));
  border-color: var(--mamey);
}

/* Responsive */
@media (max-width: 768px) {
  .tags-section {
    padding: 24px;
    border-radius: 12px;
  }
  
  .tags-container {
    gap: 10px;
  }
  
  .tag-item {
    padding: 8px 14px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .tags-section {
    padding: 20px;
  }
  
  .tags-container {
    gap: 8px;
  }
  
  .tag-item {
    padding: 6px 12px;
    font-size: 12px;
  }
  
  .tag-icon svg {
    width: 14px;
    height: 14px;
  }
}

/* Animation stagger for tags */
.tag-item {
  animation: tagFadeIn 0.5s ease backwards;
}

.tag-item:nth-child(1) { animation-delay: 0.05s; }
.tag-item:nth-child(2) { animation-delay: 0.1s; }
.tag-item:nth-child(3) { animation-delay: 0.15s; }
.tag-item:nth-child(4) { animation-delay: 0.2s; }
.tag-item:nth-child(5) { animation-delay: 0.25s; }
.tag-item:nth-child(6) { animation-delay: 0.3s; }
.tag-item:nth-child(7) { animation-delay: 0.35s; }
.tag-item:nth-child(8) { animation-delay: 0.4s; }

@keyframes tagFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}



/* prestamos.css - Professional Loans Page Styles */

/* ========== Page Layout ========== */
.prestamos-page {
  min-height: 100vh;
  background: var(--bg);
}

/* ========== Hero Section ========== */
.hero-section {
  position: relative;
  padding: 6rem 5% 4rem;
  background: linear-gradient(135deg, rgba(255,127,80,0.05), rgba(10,116,255,0.08));
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,127,80,0.1), rgba(10,116,255,0.1));
  filter: blur(60px);
  animation: float 20s ease-in-out infinite;
}

.hero-shape.shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-shape.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: 10%;
  animation-delay: 5s;
}

.hero-shape.shape-3 {
  width: 250px;
  height: 250px;
  top: 50%;
  left: -50px;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-section .container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, var(--turquesa), var(--azul));
  color: white;
  border-radius: 24px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(23,190,187,0.3);
  animation: slideInLeft 0.8s ease-out;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-secondary);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-image {
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.4s both;
}

.hero-image .image-placeholder {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,127,80,0.15), rgba(10,116,255,0.15));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.hero-image .image-placeholder:hover {
  transform: translateY(-10px) scale(1.02);
}

.hero-image .image-placeholder svg {
  color: var(--mamey);
  opacity: 0.6;
}

.hero-image .image-placeholder p {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 1.125rem;
}

/* ========== Stats Section ========== */
.stats-section {
  padding: 4rem 5%;
  background: var(--bg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mamey), var(--azul));
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.stat-card:hover::before,
.stat-card.visible::before {
  transform: scaleX(1);
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border-color: var(--mamey);
}

.stat-icon {
  margin-bottom: 1rem;
  color: var(--mamey);
  transition: transform 0.4s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin: 1rem 0;
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ========== Tipos Section ========== */
.tipos-section {
  padding: 5rem 5%;
  background: linear-gradient(180deg, transparent, rgba(23,190,187,0.03));
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255,127,80,0.1);
  color: var(--mamey);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.tipos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  
}

.tipo-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.tipo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,127,80,0.03), rgba(10,116,255,0.03));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tipo-card:hover::before {
  opacity: 1;
}

.tipo-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border-color: var(--mamey);
}

.tipo-featured {
  border-color: var(--azul);
  box-shadow: 0 8px 32px rgba(10,116,255,0.15);
}

.featured-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  color: white;
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}

.tipo-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.tipo-card:hover .tipo-icon {
  transform: scale(1.1) rotate(-5deg);
}

.tipo-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.tipo-description {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.tipo-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin: 0.5rem 0;
  position: relative;
  z-index: 1;
}

.tipo-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.5;
}

.tipo-features li svg {
  color: var(--turquesa);
  flex-shrink: 0;
}

.tipo-cta {
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  background: var(--azul);
  color: white;
  border-color: var(--azul);
}

/* ========== Calculadora Section ========== */
.calculadora-section {
  padding: 5rem 5%;
  background: var(--bg);
}

.calculadora-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.calculadora-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.calculadora-inputs {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.input-group label {
  font-weight: 700;
  color: var(--text);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-prefix,
.input-suffix {
  position: absolute;
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.input-prefix {
  left: 1rem;
}

.input-suffix {
  right: 1rem;
}

.input-wrapper input[type="number"] {
  width: 100%;
  padding: 0.875rem 3rem 0.875rem 2.5rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  transition: all 0.3s ease;
}

.input-wrapper input[type="number"]:focus {
  outline: none;
  border-color: var(--azul);
  box-shadow: 0 0 0 4px rgba(10,116,255,0.1);
}

input[type="range"] {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--border);
  outline: none;
  -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.calculadora-resultado {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255,127,80,0.05), rgba(10,116,255,0.05));
  border-radius: 16px;
}

.resultado-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.resultado-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.resultado-info {
  flex: 1;
}

.resultado-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.resultado-value {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.resultado-detalles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detalle-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--bg);
  border-radius: 10px;
}

.detalle-item span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.detalle-item strong {
  font-size: 1.125rem;
  color: var(--text);
  font-weight: 700;
}

/* ========== Beneficios Section ========== */
.beneficios-section {
  padding: 5rem 5%;
  background: linear-gradient(135deg, rgba(255,127,80,0.03), rgba(10,116,255,0.03));
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.beneficio-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.beneficio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-color: var(--turquesa);
}

.beneficio-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,127,80,0.1), rgba(10,116,255,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mamey);
  transition: all 0.4s ease;
}

.beneficio-card:hover .beneficio-icon {
  transform: scale(1.15) rotate(10deg);
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  color: white;
}

.beneficio-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.beneficio-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ========== Proceso Section ========== */
.proceso-section {
  padding: 5rem 5%;
  background: var(--bg);
}

.proceso-timeline {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
}

.proceso-step {
  position: relative;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.proceso-step:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border-color: var(--azul);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(255,127,80,0.3);
  transition: transform 0.4s ease;
}

.proceso-step:hover .step-number {
  transform: translateX(-50%) scale(1.2);
}

.step-content {
  text-align: center;
  padding-top: 1rem;
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,127,80,0.1), rgba(10,116,255,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mamey);
  transition: all 0.4s ease;
}

.proceso-step:hover .step-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  color: white;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.step-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ========== FAQ Section ========== */
.faq-section {
  padding: 5rem 5%;
  background: linear-gradient(180deg, transparent, rgba(23,190,187,0.03));
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--mamey);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--mamey);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--mamey);
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ========== Contacto Section ========== */
.contacto-section {
  padding: 5rem 5%;
  background: var(--bg);
}

.contacto-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contacto-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255,127,80,0.05), rgba(10,116,255,0.05));
  border-radius: 12px;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateX(8px);
  border-color: var(--turquesa);
}

.info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.info-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.info-value {
  font-size: 1.125rem;
  color: var(--text);
  font-weight: 700;
}

.contacto-form-wrapper {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
}

.form-icon {
  color: var(--mamey);
  flex-shrink: 0;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--azul);
  box-shadow: 0 0 0 4px rgba(10,116,255,0.1);
}

.form-input.error,
.form-textarea.error {
  border-color: #ef4444;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-select {
  cursor: pointer;
}

.form-error {
  color: #ef4444;
  font-size: 0.8rem;
  font-weight: 500;
  min-height: 16px;
}

.char-counter {
  text-align: right;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.checkbox-label {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  cursor: pointer;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.checkbox-label:hover {
  border-color: var(--azul);
  background: rgba(10,116,255,0.02);
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label span {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text);
}

.link {
  color: var(--azul);
  text-decoration: underline;
  font-weight: 600;
}

.link:hover {
  color: var(--mamey);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.btn-block {
  width: 100%;
}

.form-message {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: 3rem 2rem;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.form-message svg {
  color: var(--turquesa);
}

.form-message.error svg {
  color: #ef4444;
}

.form-message h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
}

.form-message p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.success-animation {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--turquesa), var(--azul));
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.6s ease;
}

.success-animation svg {
  color: white;
}

/* ========== Animations ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-delay {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Responsive Design ========== */
@media (max-width: 1200px) {
  .hero-section .container {
    gap: 3rem;
  }

  .calculadora-content {
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .hero-section {
    padding: 4rem 4% 3rem;
  }

  .hero-section .container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-image {
    order: -1;
  }

  .hero-image .image-placeholder {
    height: 300px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-large {
    width: 100%;
  }

  .stats-section,
  .tipos-section,
  .calculadora-section,
  .beneficios-section,
  .proceso-section,
  .faq-section,
  .contacto-section {
    padding: 3rem 4%;
  }

  .section-title {
    font-size: 2rem;
  }

  .tipos-grid {
    grid-template-columns: 1fr;
  }

  .calculadora-content {
    grid-template-columns: 1fr;
  }

  .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proceso-timeline {
    grid-template-columns: 1fr;
  }

  .contacto-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contacto-info {
    order: -1;
  }

  .contacto-form-wrapper {
    padding: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 3rem 4% 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-image .image-placeholder {
    height: 250px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-card {
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .tipo-card {
    padding: 2rem 1.5rem;
  }

  .tipo-icon {
    width: 64px;
    height: 64px;
  }

  .calculadora-content {
    padding: 2rem 1.5rem;
  }

  .resultado-value {
    font-size: 2rem;
  }

  .beneficios-grid {
    grid-template-columns: 1fr;
  }

  .beneficio-icon {
    width: 56px;
    height: 56px;
  }

  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }

  .faq-question[aria-expanded="true"] + .faq-answer {
    padding: 0 1.5rem 1.25rem;
  }

  .contacto-form-wrapper {
    padding: 1.5rem;
  }

  .info-item {
    padding: 1.25rem;
  }
}

/* ========== Print Styles ========== */
@media print {
  .header,
  .whatsapp-float,
  .hero-cta,
  .calculadora-section,
  .contacto-form,
  .footer {
    display: none;
  }

  .hero-section,
  .stats-section,
  .tipos-section,
  .beneficios-section,
  .proceso-section,
  .faq-section {
    page-break-inside: avoid;
  }

  .tipo-card,
  .beneficio-card,
  .proceso-step,
  .faq-item {
    break-inside: avoid;
    border: 1px solid #ddd;
  }
}


/* asesoria.css - Professional Advisory Page Styles */

/* ========== Page Layout ========== */
.asesoria-page {
  min-height: 100vh;
  background: var(--bg);
}

/* ========== Hero Section ========== */
.hero-section {
  position: relative;
  padding: 6rem 5% 4rem;
  background: linear-gradient(135deg, rgba(23,190,187,0.05), rgba(10,116,255,0.08));
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(23,190,187,0.1), rgba(10,116,255,0.1));
  filter: blur(60px);
  animation: float 20s ease-in-out infinite;
}

.hero-shape.shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-shape.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: 10%;
  animation-delay: 5s;
}

.hero-shape.shape-3 {
  width: 250px;
  height: 250px;
  top: 50%;
  left: -50px;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-section .container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, var(--turquesa), var(--azul));
  color: white;
  border-radius: 24px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(23,190,187,0.3);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--turquesa), var(--azul));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image .image-placeholder {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(23,190,187,0.15), rgba(10,116,255,0.15));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.hero-image .image-placeholder:hover {
  transform: translateY(-10px) scale(1.02);
}

.hero-image .image-placeholder svg {
  color: var(--turquesa);
  opacity: 0.6;
}

.hero-image .image-placeholder p {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 1.125rem;
}

/* ========== Stats Section ========== */
.stats-section {
  padding: 4rem 5%;
  background: var(--bg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--turquesa), var(--azul));
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.stat-card:hover::before,
.stat-card.visible::before {
  transform: scaleX(1);
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border-color: var(--turquesa);
}

.stat-icon {
  margin-bottom: 1rem;
  color: var(--turquesa);
  transition: transform 0.4s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin: 1rem 0;
  background: linear-gradient(135deg, var(--turquesa), var(--azul));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ========== Descripción Section ========== */
.descripcion-section {
  padding: 5rem 5%;
  background: linear-gradient(180deg, transparent, rgba(23,190,187,0.03));
}

.descripcion-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.descripcion-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section-badge {
  display: inline-block;
  width: fit-content;
  padding: 0.5rem 1rem;
  background: rgba(23,190,187,0.1);
  color: var(--turquesa);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.lead-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text);
  font-weight: 500;
}

.descripcion-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.descripcion-image .image-placeholder {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(23,190,187,0.1), rgba(10,116,255,0.1));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
}

.descripcion-image .image-placeholder:hover {
  transform: translateY(-8px) scale(1.02);
}

.descripcion-image .image-placeholder svg {
  color: var(--turquesa);
  opacity: 0.5;
}

.descripcion-image .image-placeholder p {
  color: var(--text-secondary);
  font-weight: 600;
}

/* ========== Beneficios Section ========== */
.beneficios-section {
  padding: 5rem 5%;
  background: var(--bg);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-subtitle {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-top: 1rem;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.beneficio-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.beneficio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(23,190,187,0.03), rgba(10,116,255,0.03));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.beneficio-card:hover::before {
  opacity: 1;
}

.beneficio-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border-color: var(--turquesa);
}

.beneficio-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(23,190,187,0.1), rgba(10,116,255,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--turquesa);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.beneficio-card:hover .beneficio-icon {
  transform: scale(1.15) rotate(10deg);
  background: linear-gradient(135deg, var(--turquesa), var(--azul));
  color: white;
}

.beneficio-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.beneficio-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* ========== Proceso Section ========== */
.proceso-section {
  padding: 5rem 5%;
  background: linear-gradient(135deg, rgba(23,190,187,0.03), rgba(10,116,255,0.03));
}

.proceso-timeline {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
}

.proceso-step {
  position: relative;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.proceso-step:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border-color: var(--azul);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--turquesa), var(--azul));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(23,190,187,0.3);
  transition: transform 0.4s ease;
}

.proceso-step:hover .step-number {
  transform: translateX(-50%) scale(1.2);
}

.step-content {
  text-align: center;
  padding-top: 1rem;
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(23,190,187,0.1), rgba(10,116,255,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--turquesa);
  transition: all 0.4s ease;
}

.proceso-step:hover .step-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--turquesa), var(--azul));
  color: white;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.step-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ========== FAQ Section ========== */
.faq-section {
  padding: 5rem 5%;
  background: var(--bg);
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--turquesa);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--turquesa);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--turquesa);
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ========== Contacto Section ========== */
.contacto-section {
  padding: 5rem 5%;
  background: linear-gradient(180deg, transparent, rgba(23,190,187,0.03));
}

.contacto-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contacto-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contacto-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(23,190,187,0.05), rgba(10,116,255,0.05));
  border-radius: 12px;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateX(8px);
  border-color: var(--turquesa);
}

.info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--turquesa), var(--azul));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.info-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.info-value {
  font-size: 1.125rem;
  color: var(--text);
  font-weight: 700;
}

.contacto-form-wrapper {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
}

.form-icon {
  color: var(--turquesa);
  flex-shrink: 0;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--azul);
  box-shadow: 0 0 0 4px rgba(10,116,255,0.1);
}

.form-input.error,
.form-textarea.error,
.form-select.error {
  border-color: #ef4444;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-select {
  cursor: pointer;
}

.form-error {
  color: #ef4444;
  font-size: 0.8rem;
  font-weight: 500;
  min-height: 16px;
}

.char-counter {
  text-align: right;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.checkbox-label {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  cursor: pointer;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.checkbox-label:hover {
  border-color: var(--azul);
  background: rgba(10,116,255,0.02);
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label span {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text);
}

.link {
  color: var(--azul);
  text-decoration: underline;
  font-weight: 600;
}

.link:hover {
  color: var(--turquesa);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.btn-block {
  width: 100%;
}

.form-message {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: 3rem 2rem;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.form-message svg {
  color: var(--turquesa);
}

.form-message.error svg {
  color: #ef4444;
}

.form-message h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
}

.form-message p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.success-animation {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--turquesa), var(--azul));
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.6s ease;
}

.success-animation svg {
  color: white;
}

/* ========== Animations ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-delay {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Responsive Design ========== */
@media (max-width: 1200px) {
  .hero-section .container {
    gap: 3rem;
  }

  .descripcion-content {
    gap: 3rem;
  }

  .contacto-wrapper {
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  .hero-section {
    padding: 4rem 4% 3rem;
  }

  .hero-section .container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-image {
    order: -1;
  }

  .hero-image .image-placeholder {
    height: 300px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-large {
    width: 100%;
  }

  .stats-section,
  .descripcion-section,
  .beneficios-section,
  .proceso-section,
  .faq-section,
  .contacto-section {
    padding: 3rem 4%;
  }

  .section-title {
    font-size: 2rem;
  }

  .descripcion-content {
    grid-template-columns: 1fr;
  }

  .descripcion-image {
    order: -1;
  }

  .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proceso-timeline {
    grid-template-columns: 1fr;
  }

  .contacto-wrapper {
    grid-template-columns: 1fr;
  }

  .contacto-info {
    order: -1;
  }

  .contacto-form-wrapper {
    padding: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 3rem 4% 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-image .image-placeholder {
    height: 250px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-card {
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .descripcion-image .image-placeholder {
    height: 280px;
  }

  .beneficios-grid {
    grid-template-columns: 1fr;
  }

  .beneficio-icon {
    width: 56px;
    height: 56px;
  }

  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }

  .faq-question[aria-expanded="true"] + .faq-answer {
    padding: 0 1.5rem 1.25rem;
  }

  .contacto-form-wrapper {
    padding: 1.5rem;
  }

  .info-item {
    padding: 1.25rem;
  }
}

/* ========== Print Styles ========== */
@media print {
  .header,
  .whatsapp-float,
  .hero-cta,
  .contacto-form,
  .footer {
    display: none;
  }

  .hero-section,
  .stats-section,
  .descripcion-section,
  .beneficios-section,
  .proceso-section,
  .faq-section {
    page-break-inside: avoid;
  }

  .beneficio-card,
  .proceso-step,
  .faq-item {
    break-inside: avoid;
    border: 1px solid #ddd;
  }
}



/* ventas.css - Professional Sales Page Styles */

/* ========== Page Layout ========== */
.ventas-page {
  min-height: 100vh;
  background: var(--bg);
}

/* ========== Hero Section ========== */
.hero-section {
  position: relative;
  padding: 6rem 5% 4rem;
  background: linear-gradient(135deg, rgba(255,127,80,0.05), rgba(10,116,255,0.08));
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,127,80,0.1), rgba(10,116,255,0.1));
  filter: blur(60px);
  animation: float 20s ease-in-out infinite;
}

.hero-shape.shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-shape.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: 10%;
  animation-delay: 5s;
}

.hero-shape.shape-3 {
  width: 250px;
  height: 250px;
  top: 50%;
  left: -50px;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-section .container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  color: white;
  border-radius: 24px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255,127,80,0.3);
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-secondary);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.4s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image .image-placeholder {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,127,80,0.15), rgba(10,116,255,0.15));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.hero-image .image-placeholder:hover {
  transform: translateY(-10px) scale(1.02);
}

.hero-image .image-placeholder svg {
  color: var(--mamey);
  opacity: 0.6;
}

.hero-image .image-placeholder p {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 1.125rem;
}

/* ========== Stats Section ========== */
.stats-section {
  padding: 4rem 5%;
  background: var(--bg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mamey), var(--azul));
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.stat-card:hover::before,
.stat-card.visible::before {
  transform: scaleX(1);
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border-color: var(--mamey);
}

.stat-icon {
  margin-bottom: 1rem;
  color: var(--mamey);
  transition: transform 0.4s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin: 1rem 0;
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ========== Descripción Section ========== */
.descripcion-section {
  padding: 5rem 5%;
  background: linear-gradient(180deg, transparent, rgba(255,127,80,0.03));
}

.descripcion-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.descripcion-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section-badge {
  display: inline-block;
  width: fit-content;
  padding: 0.5rem 1rem;
  background: rgba(255,127,80,0.1);
  color: var(--mamey);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.lead-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text);
  font-weight: 500;
}

.descripcion-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.descripcion-image .image-placeholder {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,127,80,0.1), rgba(10,116,255,0.1));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transition: transform 0.4s ease;
}

.descripcion-image .image-placeholder:hover {
  transform: translateY(-8px) scale(1.02);
}

.descripcion-image .image-placeholder svg {
  color: var(--mamey);
  opacity: 0.5;
}

.descripcion-image .image-placeholder p {
  color: var(--text-secondary);
  font-weight: 600;
}

/* ========== Beneficios Section ========== */
.beneficios-section {
  padding: 5rem 5%;
  background: var(--bg);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-subtitle {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-top: 1rem;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.beneficio-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.beneficio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,127,80,0.03), rgba(10,116,255,0.03));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.beneficio-card:hover::before {
  opacity: 1;
}

.beneficio-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border-color: var(--mamey);
}

.beneficio-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,127,80,0.1), rgba(10,116,255,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mamey);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.beneficio-card:hover .beneficio-icon {
  transform: scale(1.15) rotate(10deg);
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  color: white;
}

.beneficio-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.beneficio-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* ========== Proceso Section ========== */
.proceso-section {
  padding: 5rem 5%;
  background: linear-gradient(135deg, rgba(255,127,80,0.03), rgba(10,116,255,0.03));
}

.proceso-timeline {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
}

.proceso-step {
  position: relative;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.proceso-step:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border-color: var(--azul);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(255,127,80,0.3);
  transition: transform 0.4s ease;
}

.proceso-step:hover .step-number {
  transform: translateX(-50%) scale(1.2);
}

.step-content {
  text-align: center;
  padding-top: 1rem;
}

.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,127,80,0.1), rgba(10,116,255,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mamey);
  transition: all 0.4s ease;
}

.proceso-step:hover .step-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  color: white;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.step-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ========== FAQ Section ========== */
.faq-section {
  padding: 5rem 5%;
  background: var(--bg);
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--mamey);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--mamey);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--mamey);
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ========== Contacto Section ========== */
.contacto-section {
  padding: 5rem 5%;
  background: linear-gradient(180deg, transparent, rgba(255,127,80,0.03));
}

.contacto-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contacto-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contacto-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
}

.contacto-info p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255,127,80,0.05), rgba(10,116,255,0.05));
  border-radius: 12px;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateX(8px);
  border-color: var(--mamey);
}

.info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.info-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.info-value {
  font-size: 1.125rem;
  color: var(--text);
  font-weight: 700;
}

.contacto-form-wrapper {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text);
}

.form-icon {
  color: var(--mamey);
  flex-shrink: 0;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--azul);
  box-shadow: 0 0 0 4px rgba(10,116,255,0.1);
}

.form-input.error,
.form-textarea.error,
.form-select.error {
  border-color: #ef4444;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-select {
  cursor: pointer;
}

.form-error {
  color: #ef4444;
  font-size: 0.8rem;
  font-weight: 500;
  min-height: 16px;
}

.char-counter {
  text-align: right;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.checkbox-label {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  cursor: pointer;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.checkbox-label:hover {
  border-color: var(--azul);
  background: rgba(10,116,255,0.02);
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label span {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text);
}

.link {
  color: var(--azul);
  text-decoration: underline;
  font-weight: 600;
}

.link:hover {
  color: var(--mamey);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.btn-block {
  width: 100%;
}

.form-message {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding: 3rem 2rem;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.form-message svg {
  color: var(--mamey);
}

.form-message.error svg {
  color: #ef4444;
}

.form-message h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
}

.form-message p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.success-animation {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mamey), var(--azul));
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleIn 0.6s ease;
}

.success-animation svg {
  color: white;
}

/* ========== Animations ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-delay {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Spinner ========== */
.spinner {
  display: inline-block;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ========== Screen Reader Only ========== */
.sr-only {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ========== Responsive Design ========== */
@media (max-width: 1200px) {
  .hero-section .container {
    gap: 3rem;
  }

  .descripcion-content {
    gap: 3rem;
  }

  .contacto-wrapper {
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  .hero-section {
    padding: 4rem 4% 3rem;
  }

  .hero-section .container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-image {
    order: -1;
  }

  .hero-image .image-placeholder {
    height: 300px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn-large {
    width: 100%;
  }

  .stats-section,
  .descripcion-section,
  .beneficios-section,
  .proceso-section,
  .faq-section,
  .contacto-section {
    padding: 3rem 4%;
  }

  .section-title {
    font-size: 2rem;
  }

  .descripcion-content {
    grid-template-columns: 1fr;
  }

  .descripcion-image {
    order: -1;
  }

  .beneficios-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proceso-timeline {
    grid-template-columns: 1fr;
  }

  .contacto-wrapper {
    grid-template-columns: 1fr;
  }

  .contacto-info {
    order: -1;
  }

  .contacto-form-wrapper {
    padding: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 3rem 4% 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-image .image-placeholder {
    height: 250px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-card {
    padding: 2rem 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .descripcion-image .image-placeholder {
    height: 280px;
  }

  .beneficios-grid {
    grid-template-columns: 1fr;
  }

  .beneficio-icon {
    width: 56px;
    height: 56px;
  }

  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }

  .faq-question[aria-expanded="true"] + .faq-answer {
    padding: 0 1.5rem 1.25rem;
  }

  .contacto-form-wrapper {
    padding: 1.5rem;
  }

  .info-item {
    padding: 1.25rem;
  }
}

/* ========== Print Styles ========== */
@media print {
  .header,
  .whatsapp-float,
  .hero-cta,
  .contacto-form,
  .footer {
    display: none;
  }

  .hero-section,
  .stats-section,
  .descripcion-section,
  .beneficios-section,
  .proceso-section,
  .faq-section {
    page-break-inside: avoid;
  }

  .beneficio-card,
  .proceso-step,
  .faq-item {
    break-inside: avoid;
    border: 1px solid #ddd;
  }
}