.elementor-12 .elementor-element.elementor-element-4ba7947{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS */@charset "UTF-8";
:root {
  --police-blue: #3E4E63;
  --green-sheen: #6DAAA9;
  --jet-stream: #B0D8C2;
  --white: #ffffff;
  --black: #1a1a1a;
}

/* =============== SECCIÓN NEWSLETTER =============== */
.newsletter-section {
  padding: 60px 0;
  background: var(--green-sheen);
}

.newsletter-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.newsletter-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* =============== FORMULARIO MC4WP =============== */
.mc4wp-form {
  max-width: 450px;
  margin: 0 auto;
}

.mc4wp-form .newsletter-container {
  display: flex;
  gap: 12px;
  width: 100%;
}

.mc4wp-form input[type="email"] {
  flex: 1;
  padding: 16px 20px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: box-shadow 0.3s ease;
}

.mc4wp-form input[type="email"]:focus {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.mc4wp-form input[type="email"]::placeholder {
  color: #9ca3af;
}

.mc4wp-form button[type="submit"] {
  padding: 16px 28px;
  background: var(--police-blue);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.mc4wp-form button[type="submit"]:hover {
  background: var(--black);
  transform: translateY(-1px);
}

/* Mensaje de éxito/error */
.mc4wp-response {
  margin-top: 16px;
}

.mc4wp-response .mc4wp-alert {
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 14px;
}

.mc4wp-response .mc4wp-success {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.mc4wp-response .mc4wp-error {
  background: rgba(220, 38, 38, 0.2);
  color: #fecaca;
}

/* =============== RESPONSIVE =============== */
@media (max-width: 768px) {
  .mc4wp-form .newsletter-container {
    flex-direction: column;
  }
  
  .mc4wp-form input[type="email"],
  .mc4wp-form button[type="submit"] {
    width: 100%;
  }
}
    :root {
      /* Paleta Dana T Psychology */
      --police-blue: #3E4E63;
      --police-blue-light: #4a5d75;
      --green-sheen: #6DAAA9;
      --green-sheen-dark: #5a9594;
      --jet-stream: #B0D8C2;
      --chinese-white: #E2EFDF;
      --black: #1a1a1a;
      --white: #ffffff;
      --cream: #F8FAF7;
      --gray: #6b7280;
      --dark-gray: #374151;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      font-weight: 400;
      color: var(--black);
      background: var(--cream);
      line-height: 1.8;
      overflow-x: hidden;
    }

    h1, h2, h3, h4 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 500;
      line-height: 1.2;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* =============== NAVBAR =============== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 18px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(109,170,169,0.15);
      transition: all 0.3s ease;
    }

    .navbar.scrolled {
      padding: 12px 40px;
      box-shadow: 0 2px 20px rgba(62,78,99,0.08);
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .nav-logo {
      height: 50px;
      width: auto;
    }

    .nav-brand-text {
      display: flex;
      flex-direction: column;
    }

    .nav-brand-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      letter-spacing: 1px;
      color: var(--police-blue);
      font-weight: 600;
    }

    .nav-brand-sub {
      font-family: 'Montserrat', sans-serif;
      font-size: 9px;
      letter-spacing: 1.5px;
      color: var(--green-sheen);
      font-weight: 500;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      align-items: center;
    }

    .nav-link {
      font-size: 13px;
      color: var(--police-blue);
      text-decoration: none;
      letter-spacing: 0.5px;
      transition: color 0.3s ease;
    }

    .nav-link:hover {
      color: var(--green-sheen);
    }

    .nav-cta {
      display: inline-block;
      padding: 12px 28px;
      background: var(--green-sheen);
      color: var(--white);
      font-family: 'Barlow', sans-serif;
      font-size: 12px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      text-decoration: none;
      font-weight: 600;
      border-radius: 50px;
      transition: all 0.3s ease;
    }

    .nav-cta:hover {
      background: var(--police-blue);
      transform: translateY(-2px);
    }

    /* =============== HERO =============== */
    .hero {
      min-height: 100vh;
      background: var(--police-blue);
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding-top: 80px;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(62,78,99,0.95) 0%, rgba(62,78,99,0.8) 50%, rgba(109,170,169,0.4) 100%);
      z-index: 1;
    }

    .hero-bg-pattern {
      position: absolute;
      top: 0;
      right: 0;
      width: 60%;
      height: 100%;
      opacity: 0.05;
      background-image: radial-gradient(circle at 2px 2px, var(--white) 1px, transparent 0);
      background-size: 40px 40px;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 60px 0;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 60px;
      align-items: center;
    }

    .hero-tag {
      font-family: 'Barlow', sans-serif;
      font-size: 11px;
      letter-spacing: 4px;
      color: var(--jet-stream);
      text-transform: uppercase;
      margin-bottom: 24px;
      font-weight: 500;
    }

    .hero h1 {
      font-size: clamp(38px, 4.5vw, 58px);
      color: var(--white);
      margin-bottom: 28px;
      font-weight: 400;
      line-height: 1.15;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--jet-stream);
    }

    .hero-subtitle {
      font-size: 17px;
      color: rgba(255,255,255,0.85);
      margin-bottom: 20px;
      max-width: 540px;
      font-weight: 300;
      line-height: 1.9;
    }

    .hero-subtitle strong {
      color: var(--jet-stream);
      font-weight: 500;
    }

    .hero-features {
      display: flex;
      gap: 32px;
      margin: 32px 0;
      flex-wrap: wrap;
    }

    .hero-feature {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: rgba(255,255,255,0.8);
    }

    .hero-feature svg {
      width: 18px;
      height: 18px;
      color: var(--jet-stream);
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--green-sheen);
      color: var(--white);
      padding: 18px 40px;
      font-family: 'Barlow', sans-serif;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.4s ease;
      margin-top: 24px;
      border-radius: 4px;
    }

    .hero-cta:hover {
      background: var(--jet-stream);
      color: var(--police-blue);
      transform: translateY(-2px);
      box-shadow: 0 20px 40px rgba(109,170,169,0.3);
    }

    .hero-cta svg {
      width: 16px;
      height: 16px;
      transition: transform 0.3s ease;
    }

    .hero-cta:hover svg {
      transform: translateX(4px);
    }

    .hero-image-wrapper {
      position: relative;
    }

    .hero-image {
      width: 100%;
      height: 520px;
      object-fit: cover;
      object-position: center 45%;
      border-radius: 8px;
      filter: brightness(1.05);
    }

    .hero-image-frame {
      position: absolute;
      top: -16px;
      right: -16px;
      width: 100%;
      height: 100%;
      border: 2px solid var(--green-sheen);
      border-radius: 8px;
      pointer-events: none;
      opacity: 0.6;
    }

    .hero-credentials {
      position: absolute;
      bottom: -20px;
      left: 20px;
      background: var(--white);
      padding: 12px 20px;
      border-radius: 8px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.15);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .hero-credentials p {
      font-size: 14px;
      color: var(--police-blue);
      font-weight: 600;
      margin: 0;
      line-height: 1;
    }

    .hero-credentials span {
      font-size: 13px;
      color: var(--gray);
      line-height: 1;
    }

    /* =============== BRANDING ELEMENTS =============== */
    .brand-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
    }

    .brand-divider-img {
      width: 180px;
      height: auto;
    }

    .service-icon {
      width: 100px;
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
    }

    .service-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    /* =============== SECTION TAGS =============== */
    .section-tag {
      font-family: 'Barlow', sans-serif;
      font-size: 11px;
      letter-spacing: 4px;
      color: var(--green-sheen);
      text-transform: uppercase;
      margin-bottom: 20px;
      display: block;
      font-weight: 600;
    }

    /* =============== INTRO / MISSION =============== */
    .intro-section {
      padding: 30px 0 60px 0;
      background: var(--white);
    }

    .intro-content {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .intro-content h2 {
      font-size: clamp(32px, 4vw, 48px);
      color: var(--police-blue);
      margin-bottom: 40px;
    }

    .intro-content h2 em {
      font-style: italic;
      color: var(--green-sheen);
    }

    .intro-text {
      font-size: 17px;
      color: var(--dark-gray);
      margin-bottom: 24px;
      text-align: center;
      line-height: 1.9;
    }

    .intro-highlight {
      background: linear-gradient(to bottom, var(--chinese-white), var(--white));
      border-left: 4px solid var(--green-sheen);
      padding: 32px 40px;
      margin: 40px 0;
      text-align: left;
      border-radius: 0 8px 8px 0;
    }

    .intro-highlight p {
      font-size: 18px;
      color: var(--police-blue);
      font-weight: 400;
      margin: 0;
      line-height: 1.7;
      font-style: italic;
    }

    /* =============== SERVICIOS =============== */
    .services-section {
      padding: 70px 0;
      background: var(--cream);
    }

    .services-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 70px;
    }

    .services-header h2 {
      font-size: clamp(36px, 5vw, 52px);
      color: var(--police-blue);
      margin-bottom: 20px;
    }

    .services-header h2 em {
      color: var(--green-sheen);
      font-style: italic;
    }

    .services-header p {
      font-size: 17px;
      color: var(--gray);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .service-card {
      background: var(--white);
      padding: 48px 36px;
      position: relative;
      border-radius: 8px;
      border-bottom: 4px solid var(--green-sheen);
      transition: all 0.4s ease;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--green-sheen), var(--jet-stream));
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .service-card:hover::before {
      transform: scaleX(1);
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(62,78,99,0.1);
    }

    .service-card.featured {
      border-color: var(--police-blue);
      background: var(--police-blue);
    }

    .service-card.featured h3,
    .service-card.featured p,
    .service-card.featured .service-tag {
      color: var(--white);
    }

    .service-card.featured .service-tag {
      background: rgba(176,216,194,0.2);
      color: var(--jet-stream);
    }

    .service-tag {
      display: inline-block;
      font-family: 'Barlow', sans-serif;
      font-size: 10px;
      letter-spacing: 2px;
      color: var(--green-sheen);
      text-transform: uppercase;
      margin-bottom: 20px;
      background: var(--chinese-white);
      padding: 6px 14px;
      border-radius: 20px;
      font-weight: 600;
    }

    .service-card h3 {
      font-size: 26px;
      color: var(--police-blue);
      margin-bottom: 16px;
      font-style: italic;
    }

    .service-card > p {
      font-size: 15px;
      color: var(--gray);
      line-height: 1.8;
      margin-bottom: 24px;
    }

    .service-list {
      list-style: none;
      margin-bottom: 28px;
    }

    .service-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: var(--dark-gray);
      padding: 8px 0;
      border-bottom: 1px solid rgba(109,170,169,0.1);
    }

    .service-card.featured .service-list li {
      color: rgba(255,255,255,0.85);
      border-bottom-color: rgba(255,255,255,0.1);
    }

    .service-list li svg {
      width: 16px;
      height: 16px;
      color: var(--green-sheen);
      flex-shrink: 0;
      margin-top: 3px;
    }

    .service-card.featured .service-list li svg {
      color: var(--jet-stream);
    }

    .service-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      color: var(--police-blue);
      margin-bottom: 8px;
    }

    .service-card.featured .service-price {
      color: var(--jet-stream);
    }

    .service-price-note {
      font-size: 12px;
      color: var(--gray);
    }

    .service-card.featured .service-price-note {
      color: rgba(255,255,255,0.6);
    }

    .service-quote {
      font-size: 13px;
      font-style: italic;
      color: rgba(255,255,255,0.7);
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    .service-cta {
      display: inline-block;
      margin-top: 20px;
      padding: 10px 20px;
      background: transparent;
      border: 1px solid var(--green-sheen);
      color: var(--green-sheen);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      border-radius: 6px;
      transition: all 0.3s ease;
    }

    .service-cta:hover {
      background: var(--green-sheen);
      color: var(--white);
    }

    .service-card.featured .service-cta {
      border-color: var(--white);
      color: var(--white);
    }

    .service-card.featured .service-cta:hover {
      background: var(--white);
      color: var(--police-blue);
    }

    /* =============== SOBRE MÍ =============== */
    .about-section {
      padding: 70px 0;
      background: var(--white);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 80px;
      align-items: center;
    }

    .about-image-wrapper {
      position: relative;
    }

    .about-image {
      width: 100%;
      height: 600px;
      object-fit: cover;
      border-radius: 8px;
    }

    .about-image-accent {
      position: absolute;
      bottom: -20px;
      right: -20px;
      width: 200px;
      height: 200px;
      background: var(--green-sheen);
      border-radius: 8px;
      z-index: -1;
      opacity: 0.3;
    }

    .about-content h2 {
      font-size: clamp(32px, 4vw, 44px);
      color: var(--police-blue);
      margin-bottom: 24px;
    }

    .about-content h2 em {
      color: var(--green-sheen);
      font-style: italic;
    }

    .about-content p {
      font-size: 16px;
      color: var(--dark-gray);
      margin-bottom: 20px;
      line-height: 1.9;
    }

    .about-content p strong {
      color: var(--police-blue);
      font-weight: 500;
    }

    .about-credentials {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-top: 32px;
      padding-top: 32px;
      border-top: 1px solid rgba(109,170,169,0.2);
    }

    .credential-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .credential-item svg {
      width: 20px;
      height: 20px;
      color: var(--green-sheen);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .credential-item p {
      font-size: 13px;
      color: var(--dark-gray);
      margin: 0;
      line-height: 1.5;
    }

    /* =============== TESTIMONIOS =============== */
    .testimonials-section {
      padding: 70px 0;
      background: var(--police-blue);
    }

    .testimonials-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .testimonials-header .section-tag {
      color: var(--jet-stream);
    }

    .testimonials-header h2 {
      font-size: clamp(32px, 4vw, 44px);
      color: var(--white);
    }

    .testimonials-header h2 em {
      color: var(--jet-stream);
      font-style: italic;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .testimonial-card {
      background: var(--white);
      padding: 40px 36px;
      border-radius: 12px;
      position: relative;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    }

    .testimonial-card::before {
      content: '"';
      position: absolute;
      top: 20px;
      left: 28px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 80px;
      color: var(--jet-stream);
      line-height: 1;
      opacity: 0.6;
    }

    .testimonial-quote {
      font-size: 15px;
      color: var(--dark-gray);
      line-height: 1.8;
      margin-bottom: 24px;
      font-style: italic;
      position: relative;
      z-index: 1;
      padding-top: 20px;
    }

    .testimonial-author {
      font-size: 13px;
      color: var(--green-sheen);
      font-weight: 600;
    }

    /* =============== PROGRAMAS CORPORATIVOS =============== */
    .corporate-section {
      padding: 70px 0;
      background: var(--cream);
    }

    .corporate-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .corporate-content h2 {
      font-size: clamp(32px, 4vw, 44px);
      color: var(--police-blue);
      margin-bottom: 24px;
    }

    .corporate-content h2 em {
      color: var(--green-sheen);
      font-style: italic;
    }

    .corporate-content > p {
      font-size: 16px;
      color: var(--dark-gray);
      margin-bottom: 24px;
      line-height: 1.9;
    }

    .corporate-programs {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 32px;
    }

    .program-item {
      background: var(--white);
      padding: 24px;
      border-radius: 8px;
      border-left: 4px solid var(--green-sheen);
    }

    .program-item h4 {
      font-size: 18px;
      color: var(--police-blue);
      margin-bottom: 8px;
      font-style: italic;
    }

    .program-item p {
      font-size: 14px;
      color: var(--gray);
      line-height: 1.7;
    }

    .corporate-image {
      width: 100%;
      height: auto;
      max-height: 600px;
      object-fit: contain;
      border-radius: 8px;
    }

    /* =============== PROCESO =============== */
    .process-section {
      padding: 70px 0;
      background: var(--white);
    }

    .process-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 70px;
    }

    .process-header h2 {
      font-size: clamp(36px, 5vw, 52px);
      color: var(--police-blue);
      margin-bottom: 20px;
    }

    .process-header h2 em {
      color: var(--green-sheen);
      font-style: italic;
    }

    .process-header p {
      font-size: 17px;
      color: var(--gray);
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .process-step {
      text-align: center;
      padding: 32px 24px;
      position: relative;
    }

    .process-step::after {
      content: '';
      position: absolute;
      top: 50px;
      right: -12px;
      width: 24px;
      height: 2px;
      background: var(--jet-stream);
    }

    .process-step:last-child::after {
      display: none;
    }

    .process-number {
      width: 60px;
      height: 60px;
      background: var(--chinese-white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      color: var(--green-sheen);
      font-weight: 600;
      border: 2px solid var(--green-sheen);
    }

    .process-step h4 {
      font-size: 18px;
      color: var(--police-blue);
      margin-bottom: 12px;
      font-style: italic;
    }

    .process-step p {
      font-size: 14px;
      color: var(--gray);
      line-height: 1.7;
    }

    /* =============== INVERSIÓN =============== */
    .invest-section {
      padding: 70px 0;
      background: var(--cream);
    }

    .invest-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 60px;
    }

    .invest-header h2 {
      font-size: clamp(36px, 5vw, 52px);
      color: var(--police-blue);
      margin-bottom: 20px;
    }

    .invest-header h2 em {
      color: var(--green-sheen);
      font-style: italic;
    }

    .invest-header > p {
      font-size: 17px;
      color: var(--gray);
    }

    .invest-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px;
      max-width: 900px;
      margin: 0 auto;
    }

    .invest-card {
      background: var(--white);
      padding: 40px 36px;
      border-radius: 8px;
      border: 2px solid transparent;
      transition: all 0.4s ease;
    }

    .invest-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(62,78,99,0.1);
    }

    .invest-card.featured {
      border-color: var(--green-sheen);
      position: relative;
    }

    .invest-card.featured::before {
      content: 'Recomendado';
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--green-sheen);
      color: var(--white);
      padding: 6px 20px;
      font-family: 'Barlow', sans-serif;
      font-size: 10px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-weight: 600;
      border-radius: 20px;
    }

    .invest-type {
      font-family: 'Barlow', sans-serif;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--green-sheen);
      margin-bottom: 8px;
      font-weight: 600;
    }

    .invest-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 26px;
      color: var(--police-blue);
      margin-bottom: 8px;
      font-style: italic;
    }

    .invest-desc {
      font-size: 14px;
      color: var(--gray);
      margin-bottom: 24px;
    }

    .invest-price {
      margin-bottom: 24px;
      padding-bottom: 24px;
      border-bottom: 1px solid rgba(109,170,169,0.2);
    }

    .price-amount {
      font-family: 'Cormorant Garamond', serif;
      font-size: 42px;
      color: var(--police-blue);
    }

    .price-unit {
      font-size: 14px;
      color: var(--gray);
    }

    .invest-features {
      list-style: none;
      margin-bottom: 28px;
    }

    .invest-features li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 10px 0;
      font-size: 14px;
      color: var(--dark-gray);
    }

    .invest-features li svg {
      width: 18px;
      height: 18px;
      color: var(--green-sheen);
      flex-shrink: 0;
      margin-top: 1px;
    }

    .invest-cta {
      display: block;
      text-align: center;
      padding: 16px 28px;
      font-family: 'Barlow', sans-serif;
      font-size: 12px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.4s ease;
      border-radius: 4px;
      background: var(--chinese-white);
      color: var(--police-blue);
    }

    .invest-cta:hover {
      background: var(--green-sheen);
      color: var(--white);
    }

    .invest-card.featured .invest-cta {
      background: var(--green-sheen);
      color: var(--white);
    }

    .invest-card.featured .invest-cta:hover {
      background: var(--police-blue);
    }

    /* =============== NEWSLETTER =============== */
    .newsletter-section {
      padding: 60px 0;
      background: var(--green-sheen);
    }

    /* =============== FAQs =============== */
    .faq-section {
      padding: 70px 0;
      background: var(--white);
    }

    .faq-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .faq-header h2 {
      font-size: clamp(32px, 4vw, 42px);
      color: var(--police-blue);
      margin-top: 12px;
    }

    .faq-grid {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid var(--chinese-white);
      padding: 20px 0;
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      gap: 16px;
    }

    .faq-question h4 {
      font-family: 'Montserrat', sans-serif;
      font-size: 16px;
      font-weight: 500;
      color: var(--police-blue);
      margin: 0;
    }

    .faq-question svg {
      width: 20px;
      height: 20px;
      color: var(--green-sheen);
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }

    .faq-item.active .faq-question svg {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .faq-item.active .faq-answer {
      max-height: 300px;
      padding-top: 16px;
    }

    .faq-answer p {
      color: var(--gray);
      font-size: 15px;
      line-height: 1.7;
    }

    /* =============== VALORACIÓN =============== */
    .valoracion-section {
      padding: 70px 0;
      background: var(--cream);
    }

    .valoracion-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .valoracion-content h2 {
      font-size: clamp(32px, 4vw, 42px);
      color: var(--police-blue);
      margin-bottom: 20px;
    }

    .valoracion-content p {
      color: var(--gray);
      font-size: 16px;
      margin-bottom: 16px;
    }

    .valoracion-features {
      margin: 30px 0;
    }

    .valoracion-feature {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }

    .valoracion-feature svg {
      width: 20px;
      height: 20px;
      color: var(--green-sheen);
    }

    .valoracion-feature span {
      font-size: 15px;
      color: var(--dark-gray);
    }

    .valoracion-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 32px;
      background: var(--green-sheen);
      color: var(--white);
      text-decoration: none;
      font-size: 16px;
      font-weight: 600;
      border-radius: 8px;
      transition: all 0.3s ease;
      margin-top: 20px;
    }

    .valoracion-cta:hover {
      background: var(--green-sheen-dark);
      transform: translateY(-2px);
    }

    .valoracion-image {
      position: relative;
    }

    .valoracion-image img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      object-position: center top;
      border-radius: 12px;
    }

    .valoracion-badge {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background: var(--white);
      padding: 16px 24px;
      border-radius: 8px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .valoracion-badge p {
      font-size: 24px;
      font-weight: 600;
      color: var(--green-sheen);
      margin: 0;
    }

    .valoracion-badge span {
      font-size: 13px;
      color: var(--gray);
    }

    @media (max-width: 900px) {
      .valoracion-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    .newsletter-content {
      max-width: 600px;
      margin: 0 auto;
      text-align: center;
    }

    .newsletter-content h2 {
      font-size: clamp(28px, 4vw, 38px);
      color: var(--white);
      margin-bottom: 16px;
    }

    .newsletter-content p {
      font-size: 16px;
      color: rgba(255,255,255,0.85);
      margin-bottom: 32px;
    }

    .newsletter-form {
      display: flex;
      gap: 12px;
      max-width: 450px;
      margin: 0 auto;
    }

    .newsletter-form input {
      flex: 1;
      padding: 16px 20px;
      border: none;
      border-radius: 4px;
      font-size: 14px;
      font-family: 'Montserrat', sans-serif;
    }

    .newsletter-form button {
      padding: 16px 28px;
      background: var(--police-blue);
      color: var(--white);
      border: none;
      border-radius: 4px;
      font-family: 'Barlow', sans-serif;
      font-size: 12px;
      letter-spacing: 1px;
      text-transform: uppercase;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .newsletter-form button:hover {
      background: var(--black);
    }

    /* =============== FINAL CTA =============== */
    .final-cta {
      padding: 60px 0;
      background: var(--cream);
      position: relative;
      overflow: hidden;
    }

    .final-cta .container {
      position: relative;
      z-index: 1;
    }

    .final-cta-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .final-cta-content {
      text-align: left;
    }

    .final-cta h2 {
      font-size: clamp(32px, 5vw, 48px);
      color: var(--police-blue);
      margin-bottom: 24px;
    }

    .final-cta h2 em {
      color: var(--green-sheen);
      font-style: italic;
    }

    .final-cta-content p {
      font-size: 17px;
      color: var(--dark-gray);
      max-width: 500px;
      margin-bottom: 32px;
      line-height: 1.8;
    }

    .final-cta a {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--green-sheen);
      color: var(--white);
      padding: 18px 40px;
      font-family: 'Barlow', sans-serif;
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.4s ease;
      border-radius: 4px;
    }

    .final-cta a:hover {
      background: var(--police-blue);
      color: var(--white);
      transform: translateY(-2px);
    }

    .final-cta-image {
      width: 100%;
      height: 450px;
      object-fit: cover;
      object-position: center top;
      border-radius: 8px;
    }

    /* =============== FOOTER =============== */
    .footer {
      background: #1a2332;
      color: var(--white);
      padding: 60px 0 40px;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 40px;
    }

    .footer-brand h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 500;
      margin-bottom: 16px;
      color: var(--jet-stream);
    }

    .footer-brand p {
      font-size: 14px;
      color: rgba(255,255,255,0.6);
      line-height: 1.7;
      max-width: 320px;
    }

    .footer-links h5 {
      font-family: 'Barlow', sans-serif;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--green-sheen);
      margin-bottom: 20px;
      font-weight: 600;
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--jet-stream);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-copy {
      font-size: 13px;
      color: rgba(255,255,255,0.4);
    }

    .footer-social {
      display: flex;
      gap: 16px;
    }

    .footer-social a {
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.05);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .footer-social a:hover {
      background: var(--green-sheen);
    }

    .footer-social svg {
      width: 18px;
      height: 18px;
      color: rgba(255,255,255,0.7);
    }

    /* =============== RESPONSIVE =============== */
    @media (max-width: 1024px) {
      .hero-grid,
      .about-grid,
      .corporate-grid,
      .invest-grid,
      .final-cta-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .final-cta-content {
        text-align: center;
      }

      .final-cta-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
      }

      .services-grid,
      .testimonials-grid {
        grid-template-columns: 1fr;
      }

      .process-steps {
        grid-template-columns: repeat(2, 1fr);
      }

      .process-step::after {
        display: none;
      }

      .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
      }

      .footer-brand p {
        max-width: 100%;
      }

      .hero-image-wrapper {
        order: -1;
      }

      .nav-links {
        display: none;
      }
    }

    @media (max-width: 768px) {
      .navbar {
        padding: 14px 20px;
      }

      .hero {
        padding-top: 100px;
      }

      .process-steps {
        grid-template-columns: 1fr;
      }

      .about-credentials {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
      }

      .hero-features {
        flex-direction: column;
        gap: 16px;
      }

      .newsletter-form {
        flex-direction: column;
      }
    }

    /* =============== ANIMATIONS =============== */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-text > * {
      animation: fadeInUp 0.8s ease-out forwards;
    }

    .hero-tag { animation-delay: 0.1s; }
    .hero h1 { animation-delay: 0.2s; }
    .hero-subtitle { animation-delay: 0.3s; }
    .hero-features { animation-delay: 0.4s; }
    .hero-cta { animation-delay: 0.5s; }/* End custom CSS */