/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {
  /**
   * colors
   */
  --clisterate-blue: #68C5CD;
  --clisterate-blue-light: #8FD6DC;
  --clisterate-blue-dark: #4BA8B0;
  --dark-blue: #0E1C4F;
  --dark-blue-light: #1E2C6F;
  --light-blue: #E8F7F9;
  --light-gray: #f8f9fa;
  --white: #ffffff;
  --black: #000000;
  --text-color: #333333;
  --text-light: #6c757d;
  --border-color: #e9ecef;
  --success: #28a745;
  --warning: #ffc107;

  /**
   * gradient
   */
  --gradient: linear-gradient(135deg, var(--clisterate-blue) 0%, var(--dark-blue) 100%);
  --gradient-light: linear-gradient(135deg, var(--clisterate-blue-light) 0%, var(--clisterate-blue) 100%);
  --gradient-hero: linear-gradient(135deg, rgba(104, 197, 205, 0.9) 0%, rgba(14, 28, 79, 0.8) 100%);

  /**
   * typography - Mobile First
   */
  --ff-roboto: "Roboto", sans-serif;

  /* Mobile font sizes */
  --fs-1: 2.8rem;
  --fs-2: 2.4rem;
  --fs-3: 2rem;
  --fs-4: 1.8rem;
  --fs-5: 1.6rem;
  --fs-6: 1.5rem;
  --fs-7: 1.4rem;
  --fs-8: 1.2rem;

  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;

  /**
   * spacing - Mobile First
   */
  --section-padding: 60px 0;

  /**
   * border radius
   */
  --radius-8: 8px;
  --radius-12: 12px;
  --radius-16: 16px;
  --radius-20: 20px;
  --radius-pill: 50px;

  /**
   * shadow
   */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
  --shadow-blue: 0 8px 30px rgba(104, 197, 205, 0.25);

  /**
   * transition
   */
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

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

li { list-style: none; }

a {
  text-decoration: none;
  color: inherit;
}

a,
img,
span,
input,
button,
textarea,
ion-icon { display: block; }

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

input,
button,
textarea {
  background: none;
  border: none;
  font: inherit;
}

input, textarea { 
  width: 100%;
  -webkit-appearance: none;
  border-radius: 0;
}

button { 
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

ion-icon { pointer-events: none; }

html {
  font-family: var(--ff-roboto);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--text-color);
  font-size: var(--fs-5);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

/*-----------------------------------*\
  #REUSED STYLE - MOBILE FIRST
\*-----------------------------------*/

.container { 
  padding-inline: 20px;
  max-width: 100%;
  margin: 0 auto;
}

.section { 
  padding-block: var(--section-padding);
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 100%;
  margin: 0 auto 40px;
  padding: 0 10px;
}

.section-subtitle {
  color: var(--clisterate-blue);
  font-size: var(--fs-7);
  font-weight: var(--fw-600);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  color: var(--dark-blue);
  font-size: var(--fs-2);
  font-weight: var(--fw-700);
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-text {
  color: var(--text-light);
  font-size: var(--fs-6);
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-weight: var(--fw-600);
  text-align: center;
  transition: var(--transition);
  font-size: var(--fs-6);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 50px;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}

.btn-primary:active {
  transform: translateY(-2px);
}

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

.btn-secondary:active {
  background-color: var(--dark-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: var(--fs-5);
  min-height: 56px;
}

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

.w-100 { width: 100%; }

/*-----------------------------------*\
  #HERO - MOBILE FIRST
\*-----------------------------------*/

.hero {
  background: var(--gradient-hero);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
}

.logo-container {
  margin-bottom: 30px;
  text-align: center;
}

.logo {
  color: var(--white);
  font-size: 2.8rem;
  font-weight: var(--fw-700);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  font-size: 2.4rem;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-content {
  width: 100%;
  max-width: 100%;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: var(--fs-8);
  font-weight: var(--fw-600);
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-size: var(--fs-1);
  font-weight: var(--fw-800);
  line-height: 1.2;
  margin-bottom: 12px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: var(--fs-4);
  font-weight: var(--fw-500);
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-text {
  font-size: var(--fs-6);
  margin-bottom: 30px;
  opacity: 0.8;
  line-height: 1.6;
  padding: 0 10px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  min-width: 80px;
}

.stat-number {
  display: block;
  font-size: var(--fs-3);
  font-weight: var(--fw-700);
  margin-bottom: 4px;
}

.stat-label {
  font-size: var(--fs-8);
  opacity: 0.8;
}

.hero-banner {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.banner-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(104, 197, 205, 0.3) 0%, transparent 70%);
  z-index: -1;
  border-radius: 50%;
}

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
  font-size: var(--fs-8);
  opacity: 0.7;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 2px;
  height: 16px;
  background: var(--white);
  margin: 4px auto 0;
  position: relative;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: -3px;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-8px);
  }
  60% {
    transform: translateX(-50%) translateY(-4px);
  }
}

/*-----------------------------------*\
  #BENEFITS - MOBILE FIRST
\*-----------------------------------*/

.benefits {
  background-color: var(--light-blue);
  position: relative;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.benefit-card {
  background-color: var(--white);
  border-radius: var(--radius-12);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card:active {
  transform: translateY(-5px);
}

.benefit-icon {
  margin-bottom: 20px;
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  background: var(--gradient-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: var(--shadow-blue);
}

.benefit-title {
  color: var(--dark-blue);
  font-size: var(--fs-4);
  font-weight: var(--fw-600);
  margin-bottom: 12px;
  line-height: 1.3;
}

.benefit-text {
  color: var(--text-light);
  font-size: var(--fs-6);
  line-height: 1.5;
}

/*-----------------------------------*\
  #ABOUT - MOBILE FIRST
\*-----------------------------------*/

.about {
  background-color: var(--white);
}

.about .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.about-content {
  width: 100%;
}

.content-header {
  margin-bottom: 30px;
}

.about-text {
  margin-bottom: 30px;
  text-align: left;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.6;
  color: var(--text-light);
}

.feature-list {
  margin: 25px 0;
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.feature-icon {
  color: var(--clisterate-blue);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight-text {
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  color: var(--dark-blue);
  font-style: italic;
  border-left: 3px solid var(--clisterate-blue);
  padding-left: 16px;
  margin: 25px 0;
  text-align: left;
}

.about-actions {
  margin-top: 30px;
}

.about-banner {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

/*-----------------------------------*\
  #TESTIMONIALS - MOBILE FIRST
\*-----------------------------------*/

.testimonials {
  background-color: var(--light-gray);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius-12);
  padding: 25px 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testimonial-card:active {
  transform: translateY(-3px);
}

.testimonial-content {
  margin-bottom: 20px;
}

.rating {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
  color: var(--warning);
  justify-content: center;
}

.rating ion-icon {
  font-size: 16px;
}

.testimonial-text {
  color: var(--text-light);
  font-style: italic;
  line-height: 1.5;
  text-align: center;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.author-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.author-name {
  font-weight: var(--fw-600);
  color: var(--dark-blue);
  font-size: var(--fs-6);
}

.author-location {
  font-size: var(--fs-8);
  color: var(--text-light);
}

/*-----------------------------------*\
  #CTA - MOBILE FIRST
\*-----------------------------------*/

.cta {
  background: var(--gradient);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
}

.cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-content {
  width: 100%;
}

.cta-title {
  font-size: var(--fs-2);
  font-weight: var(--fw-700);
  margin-bottom: 16px;
  line-height: 1.3;
}

.cta-text {
  font-size: var(--fs-6);
  margin-bottom: 25px;
  opacity: 0.9;
  line-height: 1.5;
  padding: 0 10px;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.cta-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: var(--fs-6);
}

.cta-feature .feature-icon {
  font-size: 16px;
  opacity: 0.9;
}

.cta-banner {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

/*-----------------------------------*\
  #CONTACT - MOBILE FIRST
\*-----------------------------------*/

.contact {
  background-color: var(--light-blue);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  width: 100%;
}

.contact-info {
  text-align: center;
}

.info-header {
  margin-bottom: 30px;
}

.contact-subtitle {
  color: var(--text-light);
  font-size: var(--fs-6);
  line-height: 1.5;
  margin-top: 12px;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  text-align: center;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-label {
  font-size: var(--fs-7);
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-link {
  color: var(--dark-blue);
  font-weight: var(--fw-600);
  transition: var(--transition);
  font-size: var(--fs-5);
}

.contact-link:active {
  color: var(--clisterate-blue);
}

.contact-text {
  color: var(--text-color);
  font-weight: var(--fw-500);
  font-size: var(--fs-5);
}

.social-section {
  border-top: 1px solid var(--border-color);
  padding-top: 25px;
}

.social-title {
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  margin-bottom: 16px;
  color: var(--dark-blue);
}

.social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.social-link {
  width: 45px;
  height: 45px;
  background: var(--white);
  color: var(--dark-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.social-link:active {
  background: var(--gradient);
  color: var(--white);
  transform: translateY(-2px);
}

.contact-form {
  background-color: var(--white);
  padding: 30px 20px;
  border-radius: var(--radius-12);
  box-shadow: var(--shadow-md);
}

.form-title {
  color: var(--dark-blue);
  font-size: var(--fs-3);
  font-weight: var(--fw-700);
  margin-bottom: 8px;
  text-align: center;
}

.form-subtitle {
  color: var(--text-light);
  font-size: var(--fs-7);
  margin-bottom: 25px;
  text-align: center;
}

.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-input {
  border: 2px solid var(--border-color);
  padding: 14px 16px;
  border-radius: var(--radius-8);
  transition: var(--transition);
  font-size: var(--fs-6);
  background: var(--white);
  min-height: 50px;
}

.form-input:focus {
  border-color: var(--clisterate-blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(104, 197, 205, 0.1);
}

.form-label {
  position: absolute;
  top: 14px;
  left: 16px;
  color: var(--text-light);
  transition: var(--transition);
  pointer-events: none;
  background: var(--white);
  padding: 0 8px;
  font-size: var(--fs-6);
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
  top: -10px;
  font-size: 1.2rem;
  color: var(--clisterate-blue);
  font-weight: var(--fw-600);
}

/*-----------------------------------*\
  #FOOTER - MOBILE FIRST
\*-----------------------------------*/

.footer {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  gap: 25px;
  text-align: center;
}

.footer-brand {
  width: 100%;
  max-width: 100%;
}

.footer-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-top: 12px;
  font-size: var(--fs-6);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  gap: 15px;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-7);
  text-align: center;
}

/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--gradient);
  color: var(--white);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-blue);
  transition: var(--transition);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-tap-highlight-color: transparent;
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
}

.back-top-btn:active {
  transform: translateY(-2px);
}

/*-----------------------------------*\
  #MEDIA QUERIES - PROGRESSIVE ENHANCEMENT
\*-----------------------------------*/

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  :root {
    --fs-1: 3rem;
    --fs-2: 2.6rem;
    --container-padding: 25px;
  }
  
  .container {
    padding-inline: 25px;
    max-width: 540px;
  }
  
  .hero-actions {
    flex-direction: row;
    justify-content: center;
    max-width: 400px;
  }
  
  .hero-actions .btn {
    width: auto;
    flex: 1;
    min-width: 140px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-item {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
  
  .contact-content {
    align-items: flex-start;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  :root {
    --fs-1: 3.6rem;
    --fs-2: 3rem;
    --fs-3: 2.4rem;
    --section-padding: 80px 0;
  }
  
  .container {
    max-width: 720px;
  }
  
  .hero .container {
    flex-direction: row;
    text-align: left;
    gap: 50px;
  }
  
  .hero-content {
    text-align: left;
    max-width: 50%;
  }
  
  .hero-text {
    padding: 0;
  }
  
  .hero-actions {
    margin-left: 0;
    margin-right: 0;
    justify-content: flex-start;
  }
  
  .hero-stats {
    justify-content: flex-start;
  }
  
  .logo-container {
    text-align: left;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about .container {
    flex-direction: row;
    text-align: left;
    gap: 60px;
  }
  
  .about-content {
    text-align: left;
    max-width: 50%;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .cta .container {
    flex-direction: row;
    text-align: left;
  }
  
  .cta-content {
    text-align: left;
    max-width: 50%;
  }
  
  .cta-features {
    align-items: flex-start;
  }
  
  .cta-feature {
    justify-content: flex-start;
  }
  
  .contact-container {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  
  .contact-info {
    text-align: left;
  }
  
  .contact-item {
    flex-direction: row;
    text-align: left;
  }
  
  .contact-content {
    align-items: flex-start;
  }
  
  .social-links {
    justify-content: flex-start;
  }
  
  .footer-content {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
  
  .footer-brand {
    max-width: 50%;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  :root {
    --fs-1: 4rem;
    --fs-2: 3.2rem;
    --fs-3: 2.8rem;
    --section-padding: 100px 0;
  }
  
  .container {
    max-width: 960px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .hero-title {
    --fs-1: 4.2rem;
  }
  
  .btn:hover {
    transform: translateY(-3px);
  }
  
  .benefit-card:hover {
    transform: translateY(-10px);
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
  }
  
  .social-link:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-3px);
  }
  
  .contact-link:hover {
    color: var(--clisterate-blue);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
  
  :root {
    --fs-1: 4.8rem;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .btn:active,
  .benefit-card:active,
  .testimonial-card:active,
  .social-link:active {
    transform: translateY(-2px);
  }
  
  /* Disable hover effects on touch devices */
  .btn:hover,
  .benefit-card:hover,
  .testimonial-card:hover,
  .social-link:hover {
    transform: none;
  }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-badge {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
  }
}

/* Reduced motion support */
@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;
  }
}
/* Agrega esto al final de tu archivo CSS */

/* Scroll indicator mejorado */
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
  font-size: var(--fs-8);
  opacity: 0.7;
  animation: bounce 2s infinite;
}

.scroll-arrow {
  margin: 4px auto 0;
  animation: bounce 2s infinite;
}

.scroll-arrow ion-icon {
  font-size: 20px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

/* Footer mejorado */
.footer-contact {
  margin-top: 20px;
}

.contact-title {
  color: var(--white);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  margin-bottom: 15px;
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-7);
}

.footer-contact-item strong {
  color: var(--white);
  min-width: 80px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-contact-item a:hover {
  color: var(--clisterate-blue);
}

/* Ajustes responsive para el footer */
@media (min-width: 768px) {
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
  }
  
  .footer-brand {
    flex: 1;
    max-width: 400px;
  }
  
  .footer-contact {
    flex: 1;
    margin-top: 0;
  }
}

/* Ajustes para el logo en footer */
.footer .logo img {
  max-width: 200px;
  height: auto;
}

/* Mejoras en títulos con mayúsculas */
.section-title,
.cta-title,
.benefit-title,
.author-name {
  text-transform: none;
  font-weight: var(--fw-700);
}

/* Ajustes específicos para móviles */
@media (max-width: 768px) {
  .footer-contact-items {
    gap: 10px;
  }
  
  .footer-contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  
  .footer-contact-item strong {
    min-width: auto;
  }
}