





/* Fonts */

:root {

  --default-font: "Lato", system-ui, -apple-system, "Segoe UI", sans-serif; /* cuerpo: legible y clinico */

  --heading-font: "Cinzel", serif;  /* titulos: el caracter de la marca */

  --nav-font: "Cinzel", serif;

}



/*--------------------------------------------------------------

# Paleta de marca - Dra. Nadia Solange Tourino

# Azul medico + celeste + blanco. El dorado del isotipo queda

# como acento, para que no lea a clinica generica.

--------------------------------------------------------------*/

:root {

  --brand-deep: #0E2C49;          /* Azul profundo: header, footer, fondos oscuros */

  --brand-primary: #1B4E7E;       /* Azul principal: titulos y bloques */

  --brand-primary-soft: #2E6DA4;  /* Azul medio: degradados y superficies oscuras */

  --brand-celeste: #9ABDE3;       /* Celeste (el de la figura del hero) */

  --brand-celeste-light: #CFE2F2; /* Celeste claro: bordes y detalles suaves */

  --brand-tint: #EDF3F9;          /* Fondo claro frio (antes crema) */

  --brand-surface: #F9FCFE;       /* Blanco frio: secciones claras */

  --brand-ink: #16232B;           /* Carbon frio: texto */

  --brand-gold: #C9A24D;          /* Dorado del isotipo: acento y botones */

  --brand-gold-light: #E4C879;    /* Dorado claro: hover y titulos sobre oscuro */

  --brand-gold-deep: #8C6A24;     /* Dorado oscuro: SOLO texto sobre fondos claros */

}





/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */

:root { 

  --background-color: var(--brand-surface); /* Background color for the entire website, including individual sections */

  --default-color: var(--brand-ink); /* Default color used for the majority of the text content across the entire website */

  --heading-color: var(--brand-primary); /* Color for headings, subheadings and title throughout the website */

  --accent-color: var(--brand-gold); /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */

  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */

  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */

}



/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */

:root {

  --nav-color: rgba(247, 241, 231, 0.85);  /* The default color of the main navmenu links */

  --nav-hover-color: var(--brand-gold); /* Applied to main navmenu links when they are hovered over or active */

  --nav-mobile-background-color: var(--brand-deep); /* Used as the background color for mobile navigation menu */

  --nav-dropdown-background-color: var(--brand-deep); /* Used as the background color for dropdown items that appear when hovering over primary navigation items */

  --nav-dropdown-color: var(--brand-tint); /* Used for navigation links of the dropdown items in the navigation menu. */

  --nav-dropdown-hover-color: var(--brand-gold); /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */

}



/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */



.light-background {

  --background-color: var(--brand-tint);

  --surface-color: var(--brand-surface);

}



.dark-background .section-title .subtitle {

  color: var(--brand-gold);

}



.dark-background {

  --background-color: var(--brand-primary);

  --default-color: var(--brand-tint);

  --heading-color: var(--brand-gold-light);

  --surface-color: var(--brand-primary-soft);

  --contrast-color: #ffffff;

}



/* Fondo azul de marca para las secciones oscuras. Va junto a .dark-background */

.brand-texture {

  background-image:

    radial-gradient(120% 90% at 12% 0%, color-mix(in srgb, var(--brand-primary-soft), transparent 55%) 0%, rgba(0, 0, 0, 0) 60%),

    linear-gradient(160deg, var(--brand-deep) 0%, var(--brand-primary) 55%, var(--brand-deep) 100%);

  background-size: cover;

  background-repeat: no-repeat;

}



/* Smooth scroll */

:root {

  scroll-behavior: smooth;

}



/*--------------------------------------------------------------

# General Styling & Shared Classes

--------------------------------------------------------------*/

body {

  color: var(--default-color);

  background-color: var(--background-color);

  font-family: var(--default-font);

  font-size: 16px;

  line-height: 1.7;

  -webkit-font-smoothing: antialiased;

}



a {

  color: var(--accent-color);

  text-decoration: none;

  transition: 0.3s;

}



a:hover {

  color: color-mix(in srgb, var(--accent-color), transparent 25%);

  text-decoration: none;

}



h1,

h2,

h3,

h4,

h5,

h6 {

  color: var(--heading-color);

  font-family: var(--heading-font);

}



/* PHP Email Form Messages

------------------------------*/

.php-email-form .error-message {

  display: none;

  background: #df1529;

  color: #ffffff;

  text-align: left;

  padding: 15px;

  margin-bottom: 24px;

  font-weight: 600;

}



.php-email-form .sent-message {

  display: none;

  color: #ffffff;

  background: #059652;

  text-align: center;

  padding: 15px;

  margin-bottom: 24px;

  font-weight: 600;

}



.php-email-form .loading {

  display: none;

  background: var(--surface-color);

  text-align: center;

  padding: 15px;

  margin-bottom: 24px;

}



.php-email-form .loading:before {

  content: "";

  display: inline-block;

  border-radius: 50%;

  width: 24px;

  height: 24px;

  margin: 0 10px -6px 0;

  border: 3px solid var(--accent-color);

  border-top-color: var(--surface-color);

  animation: php-email-form-loading 1s linear infinite;

}



@keyframes php-email-form-loading {

  0% {

    transform: rotate(0deg);

  }



  100% {

    transform: rotate(360deg);

  }

}



/*--------------------------------------------------------------

# Global Header

--------------------------------------------------------------*/

/*--------------------------------------------------------------

# Global Header

--------------------------------------------------------------*/

.header {

  --background-color: var(--brand-deep);

  --default-color: var(--brand-tint);

  --heading-color: var(--brand-gold-light);

  color: var(--default-color);

  background-color: var(--brand-deep);

 

  padding: 20px 0;

  transition: all 0.5s;

  z-index: 997;

}



.header .logo {

  line-height: 1;

}



.header .logo img {

  max-height: 58px;

  width: auto;

  margin-right: 12px;

  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));

}



.header .logo .logo-text {

  display: flex;

  flex-direction: column;

  line-height: 1.15;

}



.header .logo .logo-text strong {

  font-family: var(--heading-font);

  font-size: 17px;

  font-weight: 600;

  letter-spacing: 0.4px;

  color: var(--brand-gold);

  white-space: nowrap;

}



/* La bajada en celeste, no en el azul principal: sobre el azul oscuro del header

   el azul contra azul no se lee. */

.header .logo .logo-text small {

  font-size: 10px;

  letter-spacing: 2.4px;

  text-transform: uppercase;

  color: var(--brand-celeste);

}



@media (max-width: 991px) {

  .header .logo img {

    max-height: 46px;

    margin-right: 9px;

  }



  .header .logo .logo-text {

    max-width: 46vw;

  }



  .header .logo .logo-text strong {

    font-size: 13px;

    white-space: normal;

    line-height: 1.2;

  }



  .header .logo .logo-text small {

    font-size: 8px;

    letter-spacing: 1.4px;

  }

}



.header .logo h1 {

  font-size: 26px;

  margin: 0;

  font-weight: 700;

  color: var(--heading-color);

  text-transform: uppercase;

}



.scrolled .header {

  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);

}



/* Global Header on Scroll

------------------------------*/

.scrolled .header {

  --background-color: var(--brand-deep);

  background-color: var(--brand-deep);

  background-image: none;

  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.38);

  padding: 12px 0;

  border-bottom: 1px solid color-mix(in srgb, var(--brand-gold), transparent 82%);

}



/* Con el menu mobile abierto el header nunca puede quedar transparente */

.mobile-nav-active .header {

  background-color: var(--brand-deep);

  background-image: none;

}



.scrolled .header .logo img {

  max-height: 46px;

}



/*--------------------------------------------------------------

# Navigation Menu

--------------------------------------------------------------*/

/* Desktop Navigation */



.navmenu{

  text-transform: uppercase;

}

@media (min-width: 1200px) {

  .navmenu {

    padding: 0;

  }



  .navmenu ul {

    margin: 0;

    padding: 0;

    display: flex;

    list-style: none;

    align-items: center;

  }



  .navmenu li {

    position: relative;

  }



  .navmenu>ul>li {

    white-space: nowrap;

    padding: 15px 14px;

  }



  .navmenu>ul>li:last-child {

    padding-right: 0;

  }



  .navmenu a,

  .navmenu a:focus {

    color: color-mix(in srgb, var(--nav-color), transparent 20%);

    font-size: 17px;

    padding: 0 2px;

    /* font-family: var(--nav-font); */

    font-weight: 700;

    display: flex;

    align-items: center;

    justify-content: space-between;

    white-space: nowrap;

    transition: 0.3s;

    position: relative;

   font-family: "Cinzel", serif;

    /* text-transform: uppercase; */

    color: var(--brand-tint);

    text-shadow: 0px 1px 1px #000;



  }



  .navmenu a i,

  .navmenu a:focus i {

    font-size: 12px;

    line-height: 0;

    margin-left: 5px;

    transition: 0.3s;

  }



  .navmenu>ul>li>a:before {

    content: "";

    position: absolute;

    height: 2px;

    bottom: -6px;

    left: 0;

    background-color: var(--brand-gold);

    visibility: hidden;

    width: 0px;

    transition: all 0.3s ease-in-out 0s;

  }



  .navmenu a:hover:before,

  .navmenu li:hover>a:before,

  .navmenu .active:before {

    visibility: visible;

    width: 100%;

  }



  .navmenu li:hover>a,

  .navmenu .active,

  .navmenu .active:focus {

    color: var(--nav-color);

  }



  .navmenu .dropdown ul {

    margin: 0;

    padding: 10px 0;

    background: var(--brand-deep);

    display: block;

    position: absolute;

    visibility: hidden;

    left: 14px;

    top: 130%;

    opacity: 0;

    transition: 0.3s;

    border-radius: 4px;

    z-index: 99;

    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);

    text-transform: uppercase;

  }



  .navmenu .dropdown ul li {

    min-width: 200px;

  }



  .navmenu .dropdown ul a {

    padding: 10px 20px;

    font-size: 15px;

    text-transform: uppercase;

    color: var(--brand-tint);

    text-shadow: 0px 1px 1px #000;

  }



  .navmenu .dropdown ul a i {

    font-size: 12px;

  }



  .navmenu .dropdown ul a:hover,

  .navmenu .dropdown ul .active:hover,

  .navmenu .dropdown ul li:hover>a {

    color: var(--brand-gold);

  }



  .navmenu .dropdown:hover>ul {

    opacity: 1;

    top: 100%;

    visibility: visible;

  }



  .navmenu .dropdown .dropdown ul {

    top: 0;

    left: -90%;

    visibility: hidden;

  }



  .navmenu .dropdown .dropdown:hover>ul {

    opacity: 1;

    top: 0;

    left: -100%;

    visibility: visible;

  }

}



/* Mobile Navigation */

@media (max-width: 1199px) {

  .mobile-nav-toggle {

    color: var(--nav-color);

    font-size: 28px;

    line-height: 0;

    margin-right: 10px;

    cursor: pointer;

    transition: color 0.3s;

  }



  .navmenu {

    padding: 0;

    z-index: 9997;

  }



  .navmenu ul {

    display: none;

    list-style: none;

    position: absolute;

    inset: 60px 20px 20px 20px;

    padding: 10px 0;

    margin: 0;

    border-radius: 6px;

    background-color: var(--brand-deep);

    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);

    box-shadow: none;

    overflow-y: auto;

    transition: 0.3s;

    z-index: 9998;

  }



  .navmenu a,

  .navmenu a:focus {

    color: var(--brand-tint);

    padding: 10px 20px;

    font-family: var(--nav-font);

    font-size: 17px;

    font-weight: 500;

    display: flex;

    align-items: center;

    justify-content: space-between;

    white-space: nowrap;

    transition: 0.3s;

  }



  .navmenu a i,

  .navmenu a:focus i {

    font-size: 12px;

    line-height: 0;

    margin-left: 5px;

    width: 30px;

    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    transition: 0.3s;

    background-color: color-mix(in srgb, var(--brand-gold), transparent 65%);

  }



  .navmenu a i:hover,

  .navmenu a:focus i:hover {

    background-color: color-mix(in srgb, var(--brand-gold), transparent 65%);

    color: var(--brand-deep);

  }



  .navmenu a:hover,

  .navmenu .active,

  .navmenu .active:focus {

    color: var(--brand-gold);

  }



  .navmenu .active i,

  .navmenu .active:focus i {

    background-color: var(--brand-gold);

    color: var(--contrast-color);

    transform: rotate(180deg);

  }



  .navmenu .dropdown ul {

    position: static;

    display: none;

    z-index: 99;

    padding: 10px 0;

    margin: 10px 20px;

    background-color: var(--nav-dropdown-background-color);

    transition: all 0.5s ease-in-out;

  }



  .navmenu .dropdown ul ul {

    background-color: rgba(33, 37, 41, 0.1);

  }



  .navmenu .dropdown>.dropdown-active {

    display: block;

    background-color: rgba(33, 37, 41, 0.03);

  }



  .mobile-nav-active {

    overflow: hidden;

  }



  .mobile-nav-active .mobile-nav-toggle {

    color: var(--brand-tint);

    position: absolute;

    font-size: 32px;

    top: 15px;

    right: 15px;

    margin-right: 0;

    z-index: 9999;

  }



  .mobile-nav-active .navmenu {

    position: fixed;

    overflow: hidden;

    inset: 0;

    background: rgba(33, 37, 41, 0.8);

    transition: 0.3s;

  }



  .mobile-nav-active .navmenu>ul {

    display: block;

  }

}



/*--------------------------------------------------------------

# Global Footer

--------------------------------------------------------------*/

.footer {

  color: var(--default-color);

  background: var(--brand-deep);

  font-size: 14px;

  /* Las columnas del footer estan ocultas (d-none): sin este 0 quedaba una

     banda azul vacia de 80px antes de la linea de copyright. */

  padding: 0;

  position: relative;

  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);

}



.footer .footer-content .logo {

  line-height: 1;

}



.footer .footer-content .logo span {

  color: var(--heading-color);

  font-size: 28px;

  font-weight: 700;

  letter-spacing: 0.5px;

  font-family: var(--heading-font);

}



.footer .footer-content p {

  font-size: 15px;

  line-height: 1.6;

  color: color-mix(in srgb, var(--default-color), transparent 15%);

}



.footer .newsletter-form {

  margin-top: 30px;

}



.footer .newsletter-form h5 {

  color: var(--heading-color);

  font-size: 16px;

  font-weight: 600;

  margin-bottom: 15px;

  font-family: var(--heading-font);

}



.footer .newsletter-form .input-group {

  position: relative;

  display: flex;

  border-radius: 50px;

  overflow: hidden;

  box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 90%);

}



.footer .newsletter-form input[type=email] {

  flex: 1;

  padding: 12px 20px;

  border: none;

  background-color: var(--surface-color);

  color: var(--default-color);

  font-size: 14px;

}



.footer .newsletter-form input[type=email]:focus {

  outline: none;

  box-shadow: none;

}



.footer .newsletter-form input[type=email]::placeholder {

  color: color-mix(in srgb, var(--default-color), transparent 60%);

}



.footer .newsletter-form .btn-subscribe {

  background-color: var(--accent-color);

  color: var(--contrast-color);

  border: none;

  padding: 12px 20px;

  cursor: pointer;

  transition: 0.3s;

}



.footer .newsletter-form .btn-subscribe:hover {

  background-color: color-mix(in srgb, var(--accent-color), black 10%);

}



.footer .newsletter-form .btn-subscribe i {

  font-size: 16px;

}



.footer .newsletter-form .loading,

.footer .newsletter-form .error-message,

.footer .newsletter-form .sent-message {

  font-size: 13px;

  margin-top: 8px;

}



.footer h4 {

  color: var(--heading-color);

  font-size: 18px;

  font-weight: 600;

  margin-bottom: 25px;

  position: relative;

  font-family: var(--heading-font);

}



.footer h4:after {

  content: "";

  position: absolute;

  left: 0;

  bottom: -8px;

  width: 30px;

  height: 2px;

  background-color: var(--accent-color);

}



.footer .footer-links ul {

  list-style: none;

  padding: 0;

  margin: 0;

}



.footer .footer-links ul li {

  padding: 8px 0;

  display: flex;

  align-items: center;

  transition: 0.3s;

}



.footer .footer-links ul li:hover {

  transform: translateX(5px);

}



.footer .footer-links ul a {

  color: color-mix(in srgb, var(--default-color), transparent 25%);

  text-decoration: none;

  display: flex;

  align-items: center;

  font-size: 14px;

  transition: 0.3s;

}



.footer .footer-links ul a:hover {

  color: var(--accent-color);

}



.footer .footer-links ul a i {

  margin-right: 8px;

  font-size: 12px;

  color: var(--accent-color);

}



.footer .footer-contact .contact-item {

  display: flex;

  align-items: flex-start;

  margin-bottom: 20px;

}



.footer .footer-contact .contact-item .contact-icon {

  width: 40px;

  height: 40px;

  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-right: 15px;

  flex-shrink: 0;

}



.footer .footer-contact .contact-item .contact-icon i {

  color: var(--accent-color);

  font-size: 16px;

}



.footer .footer-contact .contact-item .contact-info p {

  margin: 0;

  color: color-mix(in srgb, var(--default-color), transparent 20%);

  font-size: 14px;

  line-height: 1.5;

}



.footer .social-links {

  display: flex;

  gap: 12px;

  margin-top: 25px;

}



.footer .social-links a {

  width: 42px;

  height: 42px;

  background-color: color-mix(in srgb, var(--default-color), transparent 92%);

  color: color-mix(in srgb, var(--default-color), transparent 30%);

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  transition: 0.3s;

  text-decoration: none;

}



.footer .social-links a:hover {

  background-color: var(--accent-color);

  color: var(--contrast-color);

  transform: translateY(-3px);

}



.footer .social-links a i {

  font-size: 16px;

}



.footer .footer-bottom {

  margin-top: 50px;

  padding: 25px 0;

  background-color: color-mix(in srgb, var(--default-color), transparent 95%);

  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);

}



.footer .footer-bottom .copyright p {

  margin: 0;

  font-size: 14px;

  color: color-mix(in srgb, var(--default-color), transparent 20%);

}



@media (max-width: 991px) {

  .footer .footer-bottom .copyright p {

    text-align: center;

    margin-bottom: 15px;

  }

}



.footer .footer-bottom .footer-bottom-links {

  text-align: right;

  margin-bottom: 8px;

}



@media (max-width: 991px) {

  .footer .footer-bottom .footer-bottom-links {

    text-align: center;

    margin-bottom: 10px;

  }

}



.footer .footer-bottom .footer-bottom-links a {

  color: color-mix(in srgb, var(--default-color), transparent 30%);

  font-size: 13px;

  margin-left: 20px;

  text-decoration: none;

}



.footer .footer-bottom .footer-bottom-links a:first-child {

  margin-left: 0;

}



.footer .footer-bottom .footer-bottom-links a:hover {

  color: var(--accent-color);

}



@media (max-width: 991px) {

  .footer .footer-bottom .footer-bottom-links a {

    margin: 0 10px;

  }

}



.footer .footer-bottom .credits {

  text-align: right;

  font-size: 13px;

  color: color-mix(in srgb, var(--default-color), transparent 40%);

}



@media (max-width: 991px) {

  .footer .footer-bottom .credits {

    text-align: center;

  }

}



.footer .footer-bottom .credits a {

  color: var(--accent-color);

  text-decoration: none;

}



.footer .footer-bottom .credits a:hover {

  text-decoration: underline;

}



@media (max-width: 768px) {

  .footer {

    padding: 60px 0 0;

  }



  .footer .footer-content {

    text-align: center;

    margin-bottom: 40px;

  }



  .footer .footer-links,

  .footer .footer-contact {

    margin-bottom: 40px;

  }

}



input[type=text],

input[type=email],

textarea {

  color: var(--default-color);

  background-color: var(--surface-color);

  font-size: 14px;

  border-color: color-mix(in srgb, var(--default-color), transparent 80%);

}



input[type=text]:focus,

input[type=email]:focus,

textarea:focus {

  border-color: var(--accent-color);

}



input[type=text]::placeholder,

input[type=email]::placeholder,

textarea::placeholder {

  color: color-mix(in srgb, var(--default-color), transparent 70%);

}



/*--------------------------------------------------------------

# Preloader

--------------------------------------------------------------*/

#preloader {

  position: fixed;

  inset: 0;

  z-index: 999999;

  overflow: hidden;

  /* Azul de marca: hace resaltar el dorado del isotipo */

  background: radial-gradient(circle at 50% 45%, var(--brand-primary-soft) 0%, var(--brand-primary) 45%, var(--brand-deep) 100%);

  display: flex;

  align-items: center;

  justify-content: center;

  opacity: 1;

  visibility: visible;

  transition: opacity 0.7s ease-out, visibility 0.7s ease-out;

}



#preloader.preloader-hidden {

  opacity: 0;

  visibility: hidden;

}



/* Isotipo de marca: aparece con un fundido y un halo dorado */

.preloader-iso {

  display: block;

  width: min(58vw, 260px);

  height: auto;

  opacity: 0;

  transform: scale(0.88);

  animation:

    iso-in 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s forwards,

    iso-glow 1.6s ease-in-out 1s infinite alternate;

}



@keyframes iso-in {

  to {

    opacity: 1;

    transform: scale(1);

  }

}



@keyframes iso-glow {

  from {

    filter: drop-shadow(0 0 10px rgba(201, 162, 77, 0.18));

  }



  to {

    filter: drop-shadow(0 0 38px rgba(228, 200, 121, 0.45));

  }

}



@media (prefers-reduced-motion: reduce) {

  .preloader-iso {

    opacity: 1;

    transform: none;

    animation: none;

  }

}



/*--------------------------------------------------------------

# Floating WhatsApp Button (Scroll Top reuse)

--------------------------------------------------------------*/

.scroll-top {

  position: fixed;

  visibility: hidden;

  opacity: 0;

  right: 18px;

  bottom: 18px;

  z-index: 99999;



  width: 70px;

  height: 70px;

  border-radius: 50%;



  background: linear-gradient(

    135deg,

    #0b952b 0%,

    #128C4A 100%

  );



  display: flex;

  align-items: center;

  justify-content: center;



  box-shadow:

    0 8px 20px rgba(14, 44, 73, 0.30),

    0 0 0 0 rgba(201, 162, 77, 0.6);



  transition: all 0.4s ease;

}



/* Ícono */

.scroll-top i {

  font-size: 35px;

  color: #ffffff;

  line-height: 1;

}



/* Hover – profundidad + glow */

.scroll-top:hover {

  transform: translateY(-4px) scale(1.05);



  box-shadow:

    0 14px 30px rgba(14, 44, 73, 0.40),

    0 0 18px rgba(201, 162, 77, 0.55);



  background: linear-gradient(

    135deg,

    #23c875 0%,

    #0b952b 100%

  );

}



/* Visible */

.scroll-top.active {

  visibility: visible;

  opacity: 1;

}



/* Pulso sutil tipo WhatsApp premium */

.scroll-top.active {

  animation: whatsappPulse 2.2s infinite;

}



@keyframes whatsappPulse {

  0% {

    box-shadow:

      0 8px 20px rgba(14, 44, 73, 0.30),

      0 0 0 0 rgba(31, 166, 47, 0.815);

  }

  70% {

    box-shadow:

      0 8px 20px rgba(14, 44, 73, 0.30),

      0 0 0 14px rgba(201, 162, 77, 0);

  }

  100% {

    box-shadow:

      0 8px 20px rgba(14, 44, 73, 0.30),

      0 0 0 0 rgba(201, 162, 77, 0);

  }

}



/*--------------------------------------------------------------

# Disable aos animation delay on mobile devices

--------------------------------------------------------------*/

@media screen and (max-width: 768px) {

  [data-aos-delay] {

    transition-delay: 0 !important;

  }

}



/*--------------------------------------------------------------

# Global Page Titles & Breadcrumbs

--------------------------------------------------------------*/

.page-title {

  color: var(--default-color);

  background-color: var(--background-color);

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  padding: 200px 0 80px 0;

  text-align: center;

  position: relative;

}



.page-title:before {

  content: "";

  background-color: color-mix(in srgb, var(--background-color), transparent 20%);

  position: absolute;

  inset: 0;

}



.page-title h1 {

  font-size: 42px;

  font-weight: 300;

  margin-bottom: 10px;

}



.page-title p {

  font-weight: 300;

}



.page-title .breadcrumbs ol {

  display: flex;

  flex-wrap: wrap;

  list-style: none;

  justify-content: center;

  padding: 0;

  margin: 0;

  font-size: 16px;

  font-weight: 400;

}



.page-title .breadcrumbs ol li+li {

  padding-left: 10px;

}



.page-title .breadcrumbs ol li+li::before {

  content: "/";

  display: inline-block;

  padding-right: 10px;

  color: color-mix(in srgb, var(--default-color), transparent 50%);

}



/*--------------------------------------------------------------

# Global Sections

--------------------------------------------------------------*/

section,

.section {

  color: var(--default-color);

  background-color: var(--background-color);

  padding: 60px 0;

  scroll-margin-top: 133px;

  overflow: clip;

}



@media (max-width: 1199px) {



  section,

  .section {

    scroll-margin-top: 73px;

  }

}



/*--------------------------------------------------------------

# Global Section Titles

--------------------------------------------------------------*/

.section-title {

  text-align: center;

  padding-bottom: 60px;

  position: relative;

  margin-top: -1%;

}



.section-title h2 {

  font-size: 3.5rem;

  font-weight: 300;

  line-height: 1.2;

  color: var(--heading-color);

  margin-bottom: 1.5rem;

  letter-spacing: -1px;

}



@media (max-width: 768px) {

  .section-title h2 {

    font-size: 2.5rem;

  }

}



.section-title .subtitle {

  display: inline-block;

  font-size: 0.875rem;

  font-weight: 400;

  color: var(--brand-gold-deep);

  text-transform: uppercase;

  letter-spacing: 2px;

  margin-bottom: 1.5rem;

  position: relative;

}



.section-title .subtitle::after {

  content: "";

  position: absolute;

  bottom: -8px;

  left: 50%;

  transform: translateX(-50%);

  width: 40px;

  height: 1px;

  background: var(--accent-color);

}



.section-title p {

  font-size: 1.125rem;

  line-height: 1.8;

  color: color-mix(in srgb, var(--default-color), transparent 25%);

  max-width: 900px;

  margin: 0 auto;

  text-wrap: balance;

}



/*--------------------------------------------------------------

# Hero Section

--------------------------------------------------------------*/

.hero {

  padding: 120px 0 60px 0;

  min-height: 100vh;

  position: relative;

  display: flex;

  align-items: center;

  overflow: hidden;

}



.hero .hero-content {

  width: 100%;

  position: relative;

  display: flex;

  align-items: center;

  z-index: 3;

}



.hero .video-background {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  z-index: 1;

}



.hero .video-background video {

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.hero .video-overlay {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: color-mix(in srgb, var(--background-color), transparent 20%);

  z-index: 2;

}



.hero h1 {

  font-size: 2.0rem;

  font-weight: 700;

  margin-bottom: 1.5rem;

  line-height: 1.2;

}



@media (max-width: 768px) {

  .hero h1 {

    font-size: 2.5rem;

  }

}



@media (max-width: 576px) {

  .hero h1 {

    font-size: 2rem;

  }

}



.hero p {

  font-size: 1.25rem;

  margin-bottom: 2.5rem;

  color: color-mix(in srgb, var(--default-color), transparent 30%);

  line-height: 1.6;

}



@media (max-width: 768px) {

  .hero p {

    font-size: 1.1rem;

    margin-bottom: 2rem;

  }

}



.hero .hero-buttons {

  display: flex;

  gap: 1rem;

  justify-content: center;

  flex-wrap: wrap;

}



.hero .hero-buttons .btn {

  padding: 0.875rem 2rem;

  font-weight: 600;

  border-radius: 50px;

  transition: all 0.3s ease;

  text-decoration: none;

  border: 2px solid transparent;

  font-size: 1rem;

}



.hero .hero-buttons .btn.btn-primary {

  background-color: var(--brand-primary-soft);

  color: #ffffff;

  border-color: var(--brand-primary-soft);

}



.hero .hero-buttons .btn.btn-primary:hover {

  background-color: var(--brand-primary);

  border-color: var(--brand-primary);

  color: #ffffff;

  transform: translateY(-2px);

}



.hero .hero-buttons .btn.btn-outline {

  background-color: transparent;

  color: color-mix(in srgb, var(--default-color), transparent 20%);

  border-color: var(--brand-gold);

}



.hero .hero-buttons .btn.btn-outline:hover {

  transform: translateY(-2px);

  border-color: var(--accent-color);

  color: var(--accent-color);

}



@media (max-width: 576px) {

  .hero .hero-buttons .btn {

    padding: 0.75rem 1.5rem;

    font-size: 0.9rem;

  }

}



@media (max-width: 992px) {

  .hero {

    padding: 80px 0;

    min-height: 80vh;

  }



  .hero .hero-content {

    min-height: 80vh;

  }

}



/*--------------------------------------------------------------

# About Section

--------------------------------------------------------------*/

.about {

  padding-top: 60px;

  padding-bottom: 20px;

}



.about .content h2 {

  font-family: var(--heading-font);

  font-size: 2.5rem;

  font-weight: 300;

  line-height: 1.3;

  color: var(--heading-color);

    text-shadow: 0px 1px 1px #000;

  margin-bottom: 2rem;

  letter-spacing: -0.02em;

}



@media (max-width: 768px) {

  .about .content h2 {

    font-size: 2rem;

  }

}



.about .content p {

  font-size: 1.125rem;

  line-height: 1.8;

  color: var(--default-color);

  margin-bottom: 2rem;

  text-transform: none;

}



.about .content p strong{

  text-transform: uppercase;

  color: var(--heading-color);

  text-shadow: 10px 10px 10px 10px #000;

}



.about .content p.lead {

  font-size: 1.25rem;

  font-weight: 300;

  color: var(--default-color);

  margin-bottom: 2.5rem;

}



.about .stats-wrapper {

  display: flex;

  gap: 3rem;

  margin: 3rem 0;

  padding: 2.5rem 0;

  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);

  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);

}



@media (max-width: 576px) {

  .about .stats-wrapper {

    flex-direction: column;

    gap: 2rem;

    text-align: center;

  }

}



.about .stats-wrapper .stat-item {

  --default-color: var(--brand-tint);

  --heading-color: var(--brand-gold-light);

  display: flex;

  flex-direction: column;

  background: var(--brand-primary);

  padding: 25px;

  border-radius: 10px;

}



.about .stats-wrapper .stat-item .number {

  font-size: 3rem;

  font-weight: 200;

  color: var(--brand-gold-light);

    text-shadow: 0px 1px 1px #000;

  line-height: 1;

  margin-bottom: 0.5rem;

}



.about .stats-wrapper .stat-item .label {

  font-size: 0.875rem;

  color: var(--brand-tint);

    text-shadow: 0px 1px 1px #000;

  text-transform: uppercase;

  letter-spacing: 0.1em;

  font-weight: 500;

}



.about .cta-wrapper {

  margin-top: 2.5rem;

}



.about .cta-wrapper .btn-link {

  display: inline-flex;

  align-items: center;

  gap: 0.5rem;

  font-size: 1.125rem;

  color: var(--accent-color);

  text-decoration: none;

  font-weight: 400;

  transition: all 0.3s ease;

}



.about .cta-wrapper .btn-link i {

  transition: transform 0.3s ease;

}



.about .cta-wrapper .btn-link:hover {

  color: color-mix(in srgb, var(--accent-color), transparent 20%);

}



.about .cta-wrapper .btn-link:hover i {

  transform: translateX(4px);

}



.about .image-wrapper {

  position: relative;

  padding-left: 2rem;

  max-width: 400px;

  margin-left: auto;

  margin-right: auto;

}



@media (max-width: 992px) {

  .about .image-wrapper {

    padding-left: 0;

    margin-top: 3rem;

  }

}



.about .image-wrapper img {

  width: 100%;

  aspect-ratio: 4 / 5;

  object-fit: cover;

  object-position: 50% 18%;

  border-radius: 50% 50% 10px 10px / 34% 34% 10px 10px;

  box-shadow:

    0 0 0 1px color-mix(in srgb, var(--brand-gold), transparent 30%),

    0 0 0 10px color-mix(in srgb, var(--brand-gold), transparent 90%),

    0 26px 60px color-mix(in srgb, var(--default-color), transparent 82%);

}



.about .image-wrapper .floating-element {

  --default-color: var(--brand-tint);

  --heading-color: var(--brand-gold-light);

  position: absolute;

  bottom: -1.75rem;

  left: -2.25rem;

  background-color: var(--brand-primary);

  padding: 1.5rem 1.6rem;

  border-radius: 12px;

  max-width: 268px;

  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 80%);

}



@media (max-width: 992px) {

  .about .image-wrapper .floating-element {

    position: static;

    margin-top: 2rem;

    max-width: none;

  }

}



.about .image-wrapper .floating-element .quote-content blockquote {

  font-size: 1rem;

  line-height: 1.6;

  color: var(--brand-tint);

  margin-bottom: 1rem;

  font-style: italic;

  font-weight: 300;

}



.about .image-wrapper .floating-element .quote-content cite {

  font-size: 0.875rem;

  color: color-mix(in srgb, var(--brand-gold-light), transparent 15%);

  font-style: normal;

  font-weight: 500;

}



@media (max-width: 992px) {

  .about {

    padding: 80px 0;

  }

}



@media (max-width: 576px) {

  .about {

    padding: 60px 0;

  }

}







/*--------------------------------------------------------------

# Clients Section

--------------------------------------------------------------*/

.clients {

  padding-top: 30px;

  padding-bottom: 60px;

}



.clients .client-item {

  padding: 1.5rem;

  text-align: center;

  height: 100%;

  background-color: var(--surface-color);

  border-radius: 8px;

  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);

  transition: all 0.3s ease-in-out;

  display: flex;

  align-items: center;

  justify-content: center;

}



.clients .client-item img {

   filter: grayscale(0);

  opacity: 1;

 

  

}



.clients .client-item:hover {

  transform: translateY(-5px);

  border-color: var(--accent-color);

}



.clients .client-item:hover img {

  filter: grayscale(0);

  opacity: 1;

}



@media (max-width: 1199px) {

  .clients .client-item {

    padding: 1.25rem;

  }

}



@media (max-width: 767px) {

  .clients .client-item {

    padding: 1rem;

  }

}



.clients-swiper {

  padding: 30px 0;

  

}



.clients-swiper .swiper-slide {

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 1.5rem;

  text-align: center;

  height: 100%;

  background-color: var(--surface-color);

  border-radius: 8px;

  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);

  transition: all 0.3s ease-in-out;

  display: flex;

  align-items: center;

  justify-content: center;

}



.clients-swiper img {

  max-height: 60px;

  width: auto;

 

  transition: all 0.3s ease;

}



.clients-swiper img:hover {

  filter: grayscale(0);

  opacity: 1;

}





/*--------------------------------------------------------------

# Features Section

--------------------------------------------------------------*/

.features .tabs-wrapper {

  max-width: 1100px;

  margin: 0 auto;

}



.features .tabs-header {

  margin-bottom: 80px;

}



@media (max-width: 768px) {

  .features .tabs-header {

    margin-bottom: 60px;

  }

}



.features .tabs-header .nav-tabs {

  border: none;

  justify-content: center;

  gap: 0;

  background: var(--surface-color);

  border-radius: 8px;

  padding: 8px;

  box-shadow: 0 2px 20px color-mix(in srgb, var(--default-color), transparent 94%);

}



@media (max-width: 768px) {

  .features .tabs-header .nav-tabs {

    flex-direction: column;

    gap: 4px;

  }

}



.features .tabs-header .nav-tabs .nav-item {

  flex: 1;

  cursor: pointer;

}



@media (max-width: 768px) {

  .features .tabs-header .nav-tabs .nav-item {

    flex: none;

    width: 100%;

  }

}



.features .tabs-header .nav-tabs .nav-link {

  border: none;

  background: transparent;

  padding: 0;

  border-radius: 6px;

  transition: all 0.3s ease;

  position: relative;

  overflow: hidden;

}



.features .tabs-header .nav-tabs .nav-link.active {

  background: var(--brand-primary);

}



.features .tabs-header .nav-tabs .nav-link.active .tab-content-preview .tab-number {

  color: var(--contrast-color);

  background: color-mix(in srgb, var(--contrast-color), transparent 85%);

}



.features .tabs-header .nav-tabs .nav-link.active .tab-content-preview .tab-text h6,

.features .tabs-header .nav-tabs .nav-link.active .tab-content-preview .tab-text small {

  color: var(--contrast-color);

}



.features .tabs-header .nav-tabs .nav-link:hover:not(.active) {

  background: color-mix(in srgb, var(--accent-color), transparent 95%);

}



.features .tabs-header .nav-tabs .nav-link:hover:not(.active) .tab-content-preview .tab-number {

  background: color-mix(in srgb, var(--accent-color), transparent 85%);

  color: var(--accent-color);

}



.features .tabs-header .nav-tabs .nav-link .tab-content-preview {

  display: flex;

  align-items: center;

  gap: 16px;

  padding: 20px 24px;

}



@media (max-width: 768px) {

  .features .tabs-header .nav-tabs .nav-link .tab-content-preview {

    padding: 16px 20px;

    gap: 12px;

  }

}



.features .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-number {

  width: 36px;

  height: 36px;

  border-radius: 50%;

  background: color-mix(in srgb, var(--default-color), transparent 92%);

  color: color-mix(in srgb, var(--default-color), transparent 30%);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 13px;

  font-weight: 600;

  transition: all 0.3s ease;

  flex-shrink: 0;

}



@media (max-width: 768px) {

  .features .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-number {

    width: 32px;

    height: 32px;

    font-size: 12px;

  }

}



.features .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text {

  text-align: left;

}



@media (max-width: 768px) {

  .features .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text {

    flex: 1;

  }

}



.features .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text h6 {

  margin: 0 0 2px 0;

  font-size: 16px;

  font-weight: 500;

  color: var(--heading-color);

  transition: all 0.3s ease;

}



@media (max-width: 768px) {

  .features .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text h6 {

    font-size: 13px;

  }

}



.features .tabs-header .nav-tabs .nav-link .tab-content-preview .tab-text small {

  font-size: 13px;

  color: color-mix(in srgb,#000, transparent 40%);

  transition: all 0.3s ease;

  display: block;

  line-height: 1;

}



.features .tab-content .tab-pane {

  animation: fadeInContent 0.5s ease-in-out;

}



.features .tab-content .content-area {

  padding-right: 40px;

}



@media (max-width: 992px) {

  .features .tab-content .content-area {

    padding-right: 0;

    margin-bottom: 50px;

  }

}



.features .tab-content .content-area .content-badge {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  background: color-mix(in srgb, var(--brand-primary), transparent 12%);

  color: var(--brand-tint);

  padding: 8px 16px;

  border-radius: 50px;

  font-size: 12px;

  font-weight: 500;

  margin-bottom: 24px;

}



.features .tab-content .content-area .content-badge i {

  font-size: 14px;

}



.features .tab-content .content-area h3 {

  font-size: 36px;

  font-weight: 300;

  line-height: 1.2;

  margin-bottom: 24px;

  color: var(--heading-color);

}



@media (max-width: 768px) {

  .features .tab-content .content-area h3 {

    font-size: 28px;

  }

}



@media (max-width: 576px) {

  .features .tab-content .content-area h3 {

    font-size: 24px;

  }

}



.features .tab-content .content-area p {

  font-size: 18px;

  line-height: 1.7;

  color: color-mix(in srgb, var(--default-color), transparent 25%);

  margin-bottom: 40px;

}



@media (max-width: 768px) {

  .features .tab-content .content-area p {

    font-size: 15px;

  }

}



.features .tab-content .content-area .highlight-stats {

  display: flex;

  gap: 40px;

  margin-bottom: 40px;

}



@media (max-width: 576px) {

  .features .tab-content .content-area .highlight-stats {

    gap: 24px;

  }

}



.features .tab-content .content-area .highlight-stats .stat-item .stat-value {

  display: block;

  font-size: 28px;

  font-weight: 300;

  color: var(--accent-color);

  line-height: 1;

  margin-bottom: 4px;

}



@media (max-width: 768px) {

  .features .tab-content .content-area .highlight-stats .stat-item .stat-value {

    font-size: 24px;

  }

}



.features .tab-content .content-area .highlight-stats .stat-item .stat-label {

  font-size: 12px;

  color: color-mix(in srgb, var(--default-color), transparent 40%);

  text-transform: uppercase;

  letter-spacing: 0.5px;

}



.features .tab-content .content-area .feature-points {

  margin-bottom: 40px;

}



.features .tab-content .content-area .feature-points .point-item {

  display: flex;

  align-items: flex-start;

  gap: 12px;

  margin-bottom: 16px;

  color: var(--default-color);

}



.features .tab-content .content-area .feature-points .point-item:last-child {

  margin-bottom: 0;

}



.features .tab-content .content-area .feature-points .point-item i {

  font-size: 12px;

  color: var(--accent-color);

  margin-top: 4px;

  flex-shrink: 0;

}



.features .tab-content .content-area .feature-points .point-item span {

  font-size: 14px;

  line-height: 1.6;

  color: var(--default-color);

}



.features .tab-content .content-area .explore-link {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  color: var(--accent-color);

  text-decoration: none;

  font-size: 14px;

  font-weight: 500;

  transition: all 0.3s ease;

}



.features .tab-content .content-area .explore-link:hover {

  gap: 12px;

  color: var(--accent-color);

}



.features .tab-content .content-area .explore-link:hover i {

  transform: translate(2px, -2px);

}



.features .tab-content .content-area .explore-link i {

  font-size: 16px;

  transition: all 0.3s ease;

}



.features .tab-content .visual-content {

  position: relative;

  padding-left: 40px;

}



@media (max-width: 992px) {

  .features .tab-content .visual-content {

    padding-left: 0;

  }

}



.features .tab-content .visual-content img {

  width: 100%;

  border-radius: 8px;

}



.features .tab-content .visual-content .floating-element {

  position: absolute;

  bottom: 20px;

  right: 20px;

}



@media (max-width: 768px) {

  .features .tab-content .visual-content .floating-element {

    bottom: 15px;

    right: 15px;

  }

}



.features .tab-content .visual-content .floating-element .floating-card {

  background: var(--surface-color);

  backdrop-filter: blur(10px);

  border-radius: 12px;

  padding: 16px 20px;

  display: flex;

  align-items: center;

  gap: 12px;

  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);

  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);

  animation: floatAnimation 3s ease-in-out infinite;

}



@media (max-width: 768px) {

  .features .tab-content .visual-content .floating-element .floating-card {

    padding: 12px 16px;

    gap: 10px;

  }

}



.features .tab-content .visual-content .floating-element .floating-card i {

  font-size: 20px;

  color: var(--accent-color);

}



@media (max-width: 768px) {

  .features .tab-content .visual-content .floating-element .floating-card i {

    font-size: 18px;

  }

}



.features .tab-content .visual-content .floating-element .floating-card .card-info span {

  display: block;

  font-size: 10px;

  color: color-mix(in srgb, var(--default-color), transparent 40%);

  text-transform: uppercase;

  letter-spacing: 0.5px;

  margin-bottom: 2px;

}



.features .tab-content .visual-content .floating-element .floating-card .card-info strong {

  display: block;

  font-size: 13px;

  font-weight: 600;

  color: var(--heading-color);

}



@media (max-width: 768px) {

  .features .tab-content .visual-content .floating-element .floating-card .card-info strong {

    font-size: 12px;

  }

}



@keyframes fadeInContent {

  from {

    opacity: 0;

    transform: translateY(20px);

  }



  to {

    opacity: 1;

    transform: translateY(0);

  }

}



@keyframes floatAnimation {



  0%,

  100% {

    transform: translateY(0px);

  }



  50% {

    transform: translateY(-8px);

  }

}



/*--------------------------------------------------------------

# Features Cards Section

--------------------------------------------------------------*/

.features-cards .feature-card {

  height: 100%;

  background-color: var(--surface-color);

  border-radius: 16px;

  padding: 2.5rem;

  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 94%);

  position: relative;

  overflow: hidden;

  transition: 0.3s;

}



.features-cards .feature-card:hover {

  transform: translateY(-10px);

  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 90%);

}



.features-cards .feature-card.highlighted {

  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), var(--surface-color));

  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);

}



.features-cards .feature-icon {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 65px;

  height: 65px;

  border-radius: 18px;

  margin-bottom: 1.5rem;

  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 40%));

  color: var(--contrast-color);

}



.features-cards .feature-icon i {

  font-size: 1.75rem;

}



.features-cards h3 {

  font-size: 1.5rem;

  font-weight: 700;

  margin-bottom: 1rem;

}



.features-cards p {

  color: color-mix(in srgb, var(--default-color), transparent 25%);

  font-size: 1rem;

  line-height: 1.6;

  margin-bottom: 1.5rem;

}



.features-cards .feature-benefits {

  list-style: none;

  padding: 0;

  margin-bottom: 2rem;

}



.features-cards .feature-benefits li {

  display: flex;

  align-items: center;

  gap: 0.75rem;

  margin-bottom: 0.75rem;

  color: var(--heading-color);

}



.features-cards .feature-benefits li i {

  color: var(--accent-color);

  font-size: 1rem;

}



.features-cards .feature-image {

  border-radius: 12px;

  overflow: hidden;

  box-shadow: 0 10px 20px color-mix(in srgb, var(--default-color), transparent 92%);

}



.features-cards .feature-image img {

  width: 100%;

  height: auto;

  transition: transform 0.5s ease;

}



.features-cards .feature-image img:hover {

  transform: scale(1.05);

}



.features-cards .feature-testimonial {

  margin-top: 4rem;

  background-color: var(--surface-color);

  border-radius: 16px;

  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 94%);

  overflow: hidden;

}



.features-cards .testimonial-image {

  height: 100%;

}



.features-cards .testimonial-image img {

  height: 100%;

  object-fit: cover;

}



.features-cards .testimonial-content {

  padding: 3rem;

}



.features-cards .testimonial-content .quote-icon {

  width: 60px;

  height: 60px;

  display: flex;

  align-items: center;

  justify-content: center;

  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);

  color: var(--accent-color);

  font-size: 1.75rem;

  border-radius: 50%;

  margin-bottom: 1.5rem;

}



.features-cards .testimonial-content p {

  font-size: 1.25rem;

  font-style: italic;

  line-height: 1.7;

  margin-bottom: 2rem;

  color: var(--heading-color);

}



.features-cards .testimonial-content .testimonial-author h4 {

  font-size: 1.2rem;

  font-weight: 700;

  margin-bottom: 0.25rem;

}



.features-cards .testimonial-content .testimonial-author span {

  color: color-mix(in srgb, var(--default-color), transparent 30%);

  font-size: 0.95rem;

}



@media (max-width: 991px) {

  .features-cards .feature-card {

    margin-bottom: 1.5rem;

    padding: 2rem;

  }



  .features-cards .testimonial-content {

    padding: 2rem;

    text-align: center;

  }



  .features-cards .testimonial-content .quote-icon {

    margin-left: auto;

    margin-right: auto;

  }

}



@media (max-width: 767px) {

  .features-cards .feature-testimonial {

    margin-top: 2rem;

  }



  .features-cards .testimonial-image {

    max-height: 300px;

    overflow: hidden;

  }



  .features-cards .testimonial-image img {

    width: 100%;

    height: 300px;

    object-fit: cover;

  }



  .features-cards .testimonial-content {

    padding: 1.5rem;

  }



  .features-cards .testimonial-content p {

    font-size: 1.1rem;

  }

}



/*--------------------------------------------------------------

# Call To Action Section

--------------------------------------------------------------*/

.call-to-action {

  padding: 70px 0;

}



.call-to-action .container {

  padding: 80px;

  background: color-mix(in srgb, var(--default-color), transparent 96%);

  border-radius: 15px;

}



@media (max-width: 992px) {

  .call-to-action .container {

    padding: 60px;

  }

}



.call-to-action .content h3 {

  font-size: 48px;

  font-weight: 700;

  color: var(--brand-tint);

}



.call-to-action .content h3 em {

  font-style: normal;

  position: relative;

  z-index: 1;

}



.call-to-action .content h3 em:after {

  content: "";

  position: absolute;

  left: 0;

  right: 0;

  bottom: 10px;

  height: 10px;

  background: var(--brand-gold);

  z-index: -1;

}



.call-to-action .content p {

  color: var(--brand-tint);

  font-weight: 400;

  font-size: 18px;

}



.call-to-action .content .cta-btn {

  color: var(--contrast-color);

  font-weight: 500;

  font-size: 16px;

  display: inline-block;

  padding: 12px 40px;

  border-radius: 5px;

  transition: 0.5s;

  margin-top: 10px;

  background: var(--brand-primary-soft);

  color: #ffffff;

  font-weight: 600;

  /* Sobre el azul oscuro el relleno solo no despega: el filete celeste lo define */

  border: 1px solid var(--brand-celeste);

  box-shadow: 0 8px 22px rgba(14, 44, 73, 0.45);

}



.call-to-action .content .cta-btn:hover {

  background: var(--brand-celeste);

  color: var(--brand-deep);

  border-color: var(--brand-celeste);

}



.call-to-action .img {

  position: relative;

}



.call-to-action .img:before {

  content: "";

  position: absolute;

  inset: -8%;

  background: radial-gradient(circle at 50% 50%, rgba(201, 162, 77, 0.22) 0%, rgba(201, 162, 77, 0) 68%);

  z-index: 1;

}



.call-to-action .img img {

  position: relative;

  z-index: 3;

  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.5));

}



/*--------------------------------------------------------------

# Testimonials Section

--------------------------------------------------------------*/

.testimonials .testimonials-carousel,

.testimonials .testimonials-slider {

  overflow: hidden;

}



.testimonials .testimonial-item {

  box-sizing: content-box;

  min-height: 320px;

}



.testimonials .testimonial-item .testimonial-img {

  width: 90px;

  border-radius: 50%;

  margin: -40px 0 0 40px;

  position: relative;

  z-index: 2;

  border: 6px solid var(--background-color);

}



.testimonials .testimonial-item h3 {

  font-size: 18px;

  font-weight: bold;

  margin: 10px 0 5px 45px;

}



.testimonials .testimonial-item h4 {

  font-size: 14px;

  color: color-mix(in srgb, var(--default-color), transparent 20%);

  margin: 0 0 0 45px;

}



.testimonials .testimonial-item .quote-icon-left,

.testimonials .testimonial-item .quote-icon-right {

  color: color-mix(in srgb, var(--accent-color), transparent 50%);

  font-size: 26px;

  line-height: 0;

}



.testimonials .testimonial-item .quote-icon-left {

  display: inline-block;

  left: -5px;

  position: relative;

}



.testimonials .testimonial-item .quote-icon-right {

  display: inline-block;

  right: -5px;

  position: relative;

  top: 10px;

  transform: scale(-1, -1);

}



.testimonials .testimonial-item p {

  font-style: italic;

  margin: 0 15px 0 15px;

  padding: 20px 20px 60px 20px;

  background: color-mix(in srgb, var(--default-color), transparent 97%);

  position: relative;

  border-radius: 6px;

  position: relative;

  z-index: 1;

}



.testimonials .swiper-wrapper {

  height: auto;

}



.testimonials .swiper-pagination {

  margin-top: 20px;

  position: relative;

}



.testimonials .swiper-pagination .swiper-pagination-bullet {

  width: 12px;

  height: 12px;

  background-color: var(--background-color);

  opacity: 1;

  border: 1px solid var(--accent-color);

}



.testimonials .swiper-pagination .swiper-pagination-bullet-active {

  background-color: var(--accent-color);

}



/*--------------------------------------------------------------

# Services Section

--------------------------------------------------------------*/

.services {

  padding: 120px 0;

}



.services .service-item {

  --default-color: var(--brand-tint);

  --heading-color: var(--brand-gold-light);

  padding: 60px 40px;

  background-color: var(--brand-primary);

  border-radius: 8px;

  transition: all 0.4s ease;

  height: 100%;

  position: relative;

  color: var(--brand-tint);

}



.services .service-item:hover {

  transform: translateY(-8px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);

}



.services .service-item:hover .service-icon i {

  transform: scale(1.1);

  color: var(--brand-deep);

}











.services .service-icon {

  width: 80px;

  height: 80px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 40px;

  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--brand-gold-light) 60%));

  border-radius: 50%;

}



.services .service-icon i {

  font-size: 36px;

  color: var(--contrast-color);

  transition: transform 0.3s ease;

}



.services .service-item h3 {

  font-size: 24px;

  font-weight: 300;

  margin-bottom: 24px;

  letter-spacing: -0.5px;

  line-height: 1.3;

  color: var(--brand-gold-light);

}



.services .service-item p {

  font-size: 16px;

  line-height: 1.7;

  color: color-mix(in srgb, var(--default-color), transparent 20%);

  margin-bottom: 40px;

  color: var(--brand-tint);

}



.services .service-link {

  display: inline-flex;

  align-items: center;

  gap: 12px;

  font-size: 14px;

  font-weight: 500;

  text-transform: uppercase;

  letter-spacing: 1px;

  color: var(--brand-gold);

  text-decoration: none;

  transition: all 0.3s ease;

  background: transparent;

  border: 1px solid color-mix(in srgb, var(--brand-gold), transparent 55%);

  padding: 14px;

  border-radius: 0px;

}



.services .service-link:hover {

  background: var(--brand-gold);

  border-color: var(--brand-gold);

  color: var(--brand-deep);

}



.services .service-link:hover i{

  transform: scale(1.3) rotate(360deg);

  transition: 0.5s;

}



.services .service-link i {

  font-size: 16px;

  transition: transform 0.3s ease;

}



@media (max-width: 768px) {

  .services {

    padding: 80px 0;

  }



  .services .service-item {

    padding: 40px 24px;

  }



  .services .service-icon {

    width: 64px;

    height: 64px;

    margin-bottom: 32px;

  }



  .services .service-icon i {

    font-size: 28px;

  }



  .services h3 {

    font-size: 20px;

    margin-bottom: 20px;

  }



  .services p {

    font-size: 15px;

    margin-bottom: 32px;

  }

}



.services .service-item {

  display: flex;

  flex-direction: column;

  height: 100%;

}



.services .service-link {

  margin-top: auto;              /* 🔥 clave */

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  font-size: 14px;

  font-weight: 500;

  text-transform: uppercase;

  letter-spacing: 1px;

  color: var(--brand-gold);

  text-decoration: none;

  background: transparent;

  border: 1px solid color-mix(in srgb, var(--brand-gold), transparent 55%);

  padding: 14px;

  border-radius: 10px;

  transition: 0.5s;

}



.stat-item .number::before {

  content: "+";

  margin-left: 4px;

  font-weight: 700;

}





/*--------------------------------------------------------------

# Pricing Section

--------------------------------------------------------------*/

.pricing .pricing-item {

  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);

  padding: 40px 40px;

  height: 100%;

  border-radius: 15px;

}



.pricing h3 {

  font-weight: 600;

  margin-bottom: 15px;

  font-size: 20px;

}



.pricing h4 {

  color: var(--accent-color);

  font-size: 48px;

  font-weight: 700;

  font-family: var(--heading-font);

  margin-bottom: 0;

}



.pricing h4 sup {

  font-size: 28px;

}



.pricing h4 span {

  color: color-mix(in srgb, var(--default-color), transparent 50%);

  font-size: 18px;

  font-weight: 500;

}



.pricing .description {

  font-size: 14px;

}



.pricing .cta-btn {

  border: 1px solid var(--default-color);

  color: var(--default-color);

  display: block;

  text-align: center;

  padding: 10px 35px;

  border-radius: 5px;

  font-size: 16px;

  font-weight: 500;

  font-family: var(--heading-font);

  transition: 0.3s;

  margin-top: 20px;

  margin-bottom: 6px;

}



.pricing .cta-btn:hover {

  background: var(--accent-color);

  color: var(--contrast-color);

  border-color: var(--accent-color);

}



.pricing ul {

  padding: 0;

  list-style: none;

  color: color-mix(in srgb, var(--default-color), transparent 30%);

  text-align: left;

  line-height: 20px;

}



.pricing ul li {

  padding: 10px 0;

  display: flex;

  align-items: center;

}



.pricing ul li:last-child {

  padding-bottom: 0;

}



.pricing ul i {

  color: #059652;

  font-size: 24px;

  padding-right: 3px;

}



.pricing ul .na {

  color: color-mix(in srgb, var(--default-color), transparent 60%);

}



.pricing ul .na i {

  color: color-mix(in srgb, var(--default-color), transparent 60%);

}



.pricing ul .na span {

  text-decoration: line-through;

}



.pricing .featured {

  position: relative;

}



.pricing .featured .popular {

  position: absolute;

  top: 15px;

  right: 15px;

  background-color: var(--accent-color);

  color: var(--contrast-color);

  padding: 4px 15px 6px 15px;

  margin: 0;

  border-radius: 5px;

  font-size: 14px;

  font-weight: 500;

}



.pricing .featured .cta-btn {

  background: var(--accent-color);

  color: var(--contrast-color);

  border-color: var(--accent-color);

}



@media (max-width: 992px) {

  .pricing .box {

    max-width: 60%;

    margin: 0 auto 30px auto;

  }

}



@media (max-width: 767px) {

  .pricing .box {

    max-width: 80%;

    margin: 0 auto 30px auto;

  }

}



@media (max-width: 420px) {

  .pricing .box {

    max-width: 100%;

    margin: 0 auto 30px auto;

  }

}



/*--------------------------------------------------------------

# Faq Section

--------------------------------------------------------------*/

.faq .faq-item {

  margin-bottom: 0;

  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);

  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



.faq .faq-item:last-child {

  border-bottom: none;

}



.faq .faq-item.faq-active .faq-header .faq-number {

  color: var(--accent-color);

  font-weight: 500;

}



.faq .faq-item.faq-active .faq-header h4 {

  color: var(--heading-color);

}



.faq .faq-item.faq-active .faq-header .faq-toggle {

  color: var(--accent-color);

  transform: rotate(0deg);

}



.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {

  opacity: 0;

  transform: rotate(90deg);

}



.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {

  opacity: 1;

  transform: rotate(0deg);

}



.faq .faq-item.faq-active .faq-content {

  grid-template-rows: 1fr;

  visibility: visible;

  opacity: 1;

}



.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {

  opacity: 1;

  transform: rotate(0deg);

}



.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {

  opacity: 0;

  transform: rotate(-90deg);

}



.faq .faq-item .faq-header {

  display: flex;

  align-items: center;

  padding: 40px 0;

  cursor: pointer;

  gap: 0;

  transition: all 0.3s ease;

}



.faq .faq-item .faq-header:hover .faq-number {

  transform: scale(1.1);

}



.faq .faq-item .faq-header:hover .faq-toggle {

  transform: scale(1.1);

}



.faq .faq-item .faq-header .faq-number {

  flex-shrink: 0;

  width: 80px;

  font-family: var(--heading-font);

  font-size: 1.1rem;

  font-weight: 300;

  color: color-mix(in srgb, var(--default-color), transparent 50%);

  transition: all 0.3s ease;

  letter-spacing: -0.02em;

}



.faq .faq-item .faq-header h4 {

  flex: 1;

  margin: 0;

  font-family: var(--heading-font);

  font-size: 1.25rem;

  font-weight: 300;

  color: var(--heading-color);

  transition: all 0.3s ease;

  line-height: 1.5;

  letter-spacing: -0.01em;

  margin-right: 20px;

}



.faq .faq-item .faq-header .faq-toggle {

  flex-shrink: 0;

  width: 24px;

  height: 24px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: color-mix(in srgb, var(--default-color), transparent 40%);

  font-size: 18px;

  transition: all 0.3s ease;

  position: relative;

}



.faq .faq-item .faq-header .faq-toggle i {

  position: absolute;

  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}



.faq .faq-item .faq-content {

  display: grid;

  grid-template-rows: 0fr;

  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  visibility: hidden;

  opacity: 0;

}



.faq .faq-item .faq-content .content-inner {

  padding: 0 80px 40px 80px;

  overflow: hidden;

}



.faq .faq-item .faq-content .content-inner p {

  margin: 0;

  color: color-mix(in srgb, var(--default-color), transparent 25%);

  line-height: 1.8;

  font-size: 1rem;

  font-weight: 300;

}



@media (max-width: 768px) {

  .faq .faq-item .faq-header {

    padding: 30px 0;

  }



  .faq .faq-item .faq-header .faq-number {

    width: 60px;

    font-size: 1rem;

  }



  .faq .faq-item .faq-header h4 {

    font-size: 1.1rem;

    margin-right: 15px;

  }



  .faq .faq-item .faq-header .faq-toggle {

    width: 20px;

    height: 20px;

    font-size: 16px;

  }



  .faq .faq-item .faq-content .content-inner {

    padding: 0 60px 30px 60px;

  }



  .faq .faq-item .faq-content .content-inner p {

    font-size: 0.95rem;

  }

}



@media (max-width: 576px) {

  .faq .faq-item .faq-header {

    padding: 25px 0;

  }



  .faq .faq-item .faq-header .faq-number {

    width: 50px;

    font-size: 0.9rem;

  }



  .faq .faq-item .faq-header h4 {

    font-size: 1rem;

    margin-right: 10px;

  }



  .faq .faq-item .faq-content .content-inner {

    padding: 0 50px 25px 50px;

  }



  .faq .faq-item .faq-content .content-inner p {

    font-size: 0.9rem;

  }

}



/*--------------------------------------------------------------

# Portfolio Section

--------------------------------------------------------------*/

.portfolio .portfolio-filters-wrapper {

  text-align: center;

  margin-bottom: 80px;

}



.portfolio .portfolio-filters {

  display: inline-flex;

  align-items: center;

  gap: 40px;

  padding: 0;

  margin: 0;

  list-style: none;

  position: relative;

}



.portfolio .portfolio-filters::after {

  content: "";

  position: absolute;

  bottom: -8px;

  left: 0;

  width: 100%;

  height: 1px;

  background: color-mix(in srgb, var(--default-color), transparent 90%);

}



.portfolio .portfolio-filters li {

  position: relative;

  cursor: pointer;

  padding: 12px 0;

  font-size: 15px;

  font-weight: 400;

  color: color-mix(in srgb, var(--default-color), transparent 30%);

  transition: all 0.4s ease-out;

  letter-spacing: 0.5px;

}



.portfolio .portfolio-filters li::after {

  content: "";

  position: absolute;

  bottom: -8px;

  left: 50%;

  width: 0;

  height: 2px;

  background: var(--accent-color);

  transition: all 0.4s ease-out;

  transform: translateX(-50%);

}



.portfolio .portfolio-filters li:hover {

  color: var(--default-color);

}



.portfolio .portfolio-filters li.filter-active {

  color: var(--default-color);

}



.portfolio .portfolio-filters li.filter-active::after {

  width: 100%;

}



@media (max-width: 768px) {

  .portfolio .portfolio-filters {

    flex-wrap: wrap;

    gap: 20px;

    justify-content: center;

  }

}



.portfolio .portfolio-card {

  background: var(--surface-color);

  transition: all 0.4s ease-out;

  overflow: hidden;

}



.portfolio .portfolio-card:hover {

  transform: translateY(-8px);

}



.portfolio .portfolio-card:hover .image-container img {

  transform: scale(1.05);

}



.portfolio .portfolio-card:hover .overlay {

  opacity: 1;

  visibility: visible;

}



.portfolio .portfolio-card:hover .content h3 {

  color: var(--accent-color);

}



.portfolio .image-container {

  position: relative;

  overflow: hidden;

  aspect-ratio: 4/3;

  border-radius: 8px;

}



.portfolio .image-container img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.6s ease-out;

}



.portfolio .image-container .overlay {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background: color-mix(in srgb, var(--accent-color), transparent 50%);

  display: flex;

  align-items: center;

  justify-content: center;

  opacity: 0;

  visibility: hidden;

  transition: all 0.4s ease-out;

  backdrop-filter: blur(2px);

}



.portfolio .image-container .overlay-content {

  display: flex;

  gap: 20px;

  transform: translateY(20px);

  transition: transform 0.4s ease-out 0.1s;

}



.portfolio-card:hover .portfolio .image-container .overlay-content {

  transform: translateY(0);

}



.portfolio .image-container .overlay-content a {

  width: 50px;

  height: 50px;

  background: var(--surface-color);

  color: var(--heading-color);

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  transition: all 0.3s ease;

  font-size: 18px;

}



.portfolio .image-container .overlay-content a:hover {

  background: var(--accent-color);

  color: var(--contrast-color);

  transform: scale(1.1);

}



.portfolio .content {

  padding: 30px 0;

  text-align: center;

}



.portfolio .content h3 {

  font-size: 20px;

  font-weight: 400;

  margin-bottom: 8px;

  transition: color 0.3s ease;

  letter-spacing: 0.5px;

}



.portfolio .content p {

  color: color-mix(in srgb, var(--default-color), transparent 40%);

  font-size: 14px;

  line-height: 1.6;

  margin: 0;

  letter-spacing: 0.3px;

}



@media (min-width: 992px) {

  .portfolio .portfolio-grid {

    grid-template-columns: repeat(3, 1fr);

  }

}



@media (min-width: 1200px) {

  .portfolio .portfolio-grid {

    grid-template-columns: repeat(4, 1fr);

    gap: 50px;

  }

}



/*--------------------------------------------------------------

# Team Section

--------------------------------------------------------------*/

.team {

  padding-top: 60px;

  padding-bottom: 60px;

}



.team .member-card {

  background: var(--surface-color);

  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);

  border-radius: 14px;

  overflow: hidden;

  display: flex;

  flex-direction: column;

  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;

}



.team .member-card:hover {

  transform: translateY(-6px);

  box-shadow: 0 14px 30px color-mix(in srgb, var(--default-color), transparent 92%);

  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);

}



.team .member-card:hover .member-media .social-list {

  opacity: 1;

  transform: translateY(0);

  pointer-events: auto;

}



.team .member-card .member-media {

  position: relative;

  aspect-ratio: 1/1;

  background: color-mix(in srgb, var(--accent-color), transparent 92%);

}



.team .member-card .member-media img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

}



.team .member-card .member-media .social-list {

  list-style: none;

  position: absolute;

  inset-inline: 12px;

  bottom: 12px;

  display: flex;

  gap: 10px;

  background: color-mix(in srgb, var(--background-color), var(--accent-color) 6%);

  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);

  backdrop-filter: blur(4px);

  border-radius: 999px;

  padding: 8px 10px;

  justify-content: center;

  opacity: 0;

  transform: translateY(10px);

  transition: all 0.3s ease;

  pointer-events: none;

}



.team .member-card .member-media .social-list a {

  width: 34px;

  height: 34px;

  border-radius: 50%;

  display: grid;

  place-items: center;

  color: var(--default-color);

  background: var(--surface-color);

  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);

  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;

}



.team .member-card .member-media .social-list a:hover {

  background: var(--accent-color);

  color: var(--contrast-color);

  border-color: color-mix(in srgb, var(--accent-color), transparent 30%);

  transform: translateY(-2px);

}



.team .member-card .member-content {

  padding: 18px 18px 22px;

}



.team .member-card .member-content .member-name {

  font-size: 1.05rem;

  margin: 0 0 4px 0;

}



.team .member-card .member-content .member-role {

  margin: 0 0 10px 0;

  font-size: 0.9rem;

  color: color-mix(in srgb, var(--default-color), transparent 35%);

}



.team .member-card .member-content .member-bio {

  margin: 0;

  font-size: 0.92rem;

  line-height: 1.55;

  color: color-mix(in srgb, var(--default-color), transparent 18%);

}



.team .team-highlight {

  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%) 0%, color-mix(in srgb, var(--accent-color), transparent 96%) 100%);

  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);

  border-radius: 14px;

  padding: 22px 22px;

}



.team .team-highlight .icon-wrap {

  width: 52px;

  height: 52px;

  border-radius: 12px;

  display: grid;

  place-items: center;

  margin-right: 14px;

  color: var(--accent-color);

  background: color-mix(in srgb, var(--accent-color), transparent 90%);

  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);

}



.team .team-highlight .icon-wrap i {

  font-size: 1.25rem;

}



.team .team-highlight .title {

  margin: 0 0 6px 0;

  font-size: 1.1rem;

}



.team .team-highlight .desc {

  color: color-mix(in srgb, var(--default-color), transparent 18%);

}



.team .join-card {

  position: relative;

  border-radius: 14px;

  overflow: hidden;

  background: radial-gradient(1200px 300px at 20% -10%, color-mix(in srgb, var(--accent-color), transparent 82%), transparent 60%), radial-gradient(900px 300px at 120% 110%, color-mix(in srgb, var(--accent-color), transparent 86%), transparent 60%), var(--surface-color);

  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);

  display: flex;

}



.team .join-card .join-content {

  padding: 24px;

  position: relative;

  z-index: 2;

}



.team .join-card .join-content p {

  color: color-mix(in srgb, var(--default-color), transparent 20%);

}



.team .join-card .join-content .btn-join {

  display: inline-flex;

  align-items: center;

  gap: 6px;

  padding: 10px 14px;

  border-radius: 10px;

  background: var(--accent-color);

  color: var(--contrast-color);

  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 25%);

  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;

}



.team .join-card .join-content .btn-join:hover {

  transform: translateY(-2px);

  box-shadow: 0 10px 20px color-mix(in srgb, var(--accent-color), transparent 70%);

  background: color-mix(in srgb, var(--accent-color), white 10%);

  color: var(--contrast-color);

}



.team .swiper-wrapper {

  height: auto !important;

}



@media (max-width: 992px) {

  .team .team-highlight .icon-wrap {

    margin-right: 12px;

  }

}



@media (max-width: 768px) {

  .team .member-card .member-content {

    padding: 16px;

  }



  .team .member-card .member-content .member-bio {

    font-size: 0.9rem;

  }



  .team .join-card .join-content {

    padding: 20px;

  }

}



/*--------------------------------------------------------------

# Contact Section

--------------------------------------------------------------*/

.contact .contact-form-container {

  padding: 60px 0;

}



.contact .contact-form-container .form-intro {

  margin-bottom: 60px;

}



.contact .contact-form-container .form-intro h2 {

  font-size: 36px;

  font-weight: 300;

  line-height: 1.3;

  margin-bottom: 20px;

  color: var(--accent-color);

  letter-spacing: -0.5px;

}



@media (max-width: 768px) {

  .contact .contact-form-container .form-intro h2 {

    font-size: 28px;

  }

}



.contact .contact-form-container .form-intro p {

  font-size: 18px;

  line-height: 1.7;

  color: var(--brand-tint);

  margin-bottom: 0;

  opacity: 0.85;

}



.contact .contact-form-container .contact-form .row {

  margin-bottom: 40px;

}



.contact .contact-form-container .contact-form .row:last-of-type {

  margin-bottom: 0;

}



.contact .contact-form-container .contact-form .form-field {

  position: relative;

  margin-bottom: 40px;

}



.contact .contact-form-container .contact-form .form-field.message-field {

  margin-bottom: 50px;

}



.contact .contact-form-container .contact-form .form-field .field-label {

  position: absolute;

  top: -10px;

  left: 0;

  font-size: 13px;

  font-weight: 500;

  color: var(--accent-color);

  letter-spacing: 0.5px;

  text-transform: uppercase;

  opacity: 0.8;

}



.contact .contact-form-container .contact-form .form-field .form-input {

  width: 100%;

  border: none;

  border-bottom: 1px solid color-mix(in srgb, var(--brand-gold), transparent 70%);

  background: transparent;

  padding: 20px 0 15px 0;

  font-size: 16px;

  color: var(--brand-tint);

  transition: all 0.3s ease;

}



.contact .contact-form-container .contact-form .form-field .form-input:focus {

  outline: none;

  border-bottom-color: var(--accent-color);

  background: transparent;

}



.contact .contact-form-container .contact-form .form-field .form-input::placeholder {

  color: color-mix(in srgb, var(--default-color), transparent 60%);

  opacity: 1;

}



.contact .contact-form-container .contact-form .form-field .message-input {

  resize: vertical;

  min-height: 120px;

  font-family: inherit;

  padding-top: 25px;

  color: var(--brand-tint);

}



.contact .contact-form-container .contact-form .send-button {

  background: transparent;

  border: 1px solid var(--accent-color);

  color: var(--brand-tint);

  padding: 18px 40px;

  font-size: 14px;

  font-weight: 500;

  letter-spacing: 1px;

  text-transform: uppercase;

  display: inline-flex;

  align-items: center;

  gap: 15px;

  transition: all 0.3s ease;

  cursor: pointer;

}



.contact .contact-form-container .contact-form .send-button .button-arrow {

  font-size: 18px;

  transition: transform 0.3s ease;

}



.contact .contact-form-container .contact-form .send-button:hover {

  background: var(--accent-color);

  color: var(--contrast-color);

}



.contact .contact-form-container .contact-form .send-button:hover .button-arrow {

  transform: translateX(5px);

}



.contact .contact-sidebar {

  background: color-mix(in srgb, var(--accent-color), transparent 97%);

  height: 100%;

  padding: 60px 40px;

}



.contact .contact-sidebar .contact-header {

  margin-bottom: 60px;

}



.contact .contact-sidebar .contact-header h3 {

  font-size: 28px;

  font-weight: 300;

  margin-bottom: 20px;

  color: var(--accent-color);

  letter-spacing: -0.3px;

}



.contact .contact-sidebar .contact-header p {

  font-size: 16px;

  line-height: 1.7;

  color: var(--brand-tint);

  margin-bottom: 0;

  opacity: 0.85;

}



.contact .contact-sidebar .contact-methods {

  margin-bottom: 60px;

}



.contact .contact-sidebar .contact-method {

  display: flex;

  align-items: flex-start;

  gap: 20px;

  margin-bottom: 40px;

}



.contact .contact-sidebar .contact-method:last-child {

  margin-bottom: 0;

}



.contact .contact-sidebar .contact-method .contact-icon {

  width: 40px;

  height: 40px;

  flex-shrink: 0;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--accent-color);

}



.contact .contact-sidebar .contact-method .contact-icon i {

  font-size: 20px;

}



.contact .contact-sidebar .contact-method .contact-details {

  flex: 1;

}



.contact .contact-sidebar .contact-method .contact-details .method-label {

  font-size: 12px;

  font-weight: 600;

  color: var(--accent-color);

  letter-spacing: 1px;

  text-transform: uppercase;

  display: block;

  margin-bottom: 8px;

}



.contact .contact-sidebar .contact-method .contact-details p {

  font-size: 15px;

  line-height: 1.6;

  color: var(--brand-tint);

  margin-bottom: 0;

}



.contact .contact-sidebar .connect-section {

  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);

  padding-top: 40px;

}



.contact .contact-sidebar .connect-section .connect-label {

  font-size: 12px;

  font-weight: 600;

  color: var(--accent-color);

  letter-spacing: 1px;

  text-transform: uppercase;

  display: block;

  margin-bottom: 20px;

}



.contact .contact-sidebar .connect-section .social-links {

  display: flex;

  gap: 15px;

}



.contact .contact-sidebar .connect-section .social-links .social-link {

  display: flex;

  align-items: center;

  justify-content: center;

  width: 40px;

  height: 40px;

  color: var(--brand-tint);

  text-decoration: none;

  transition: all 0.3s ease;

}



.contact .contact-sidebar .connect-section .social-links .social-link i {

  font-size: 16px;

}



.contact .contact-sidebar .connect-section .social-links .social-link:hover {

  color: var(--accent-color);

  transform: translateY(-2px);

}



@media (max-width: 992px) {

  .contact .contact-form-container {

    padding: 40px 0;

  }



  .contact .contact-sidebar {

    padding: 40px 30px;

    margin-bottom: 40px;

  }

}



@media (max-width: 768px) {

  .contact .contact-form-container .form-intro {

    margin-bottom: 40px;

    text-align: center;

  }



  .contact .contact-form-container .contact-form .row {

    margin-bottom: 20px;

  }



  .contact .contact-form-container .contact-form .form-field {

    margin-bottom: 30px;

  }



  .contact .contact-sidebar {

    padding: 30px 25px;

  }



  .contact .contact-sidebar .contact-header,

  .contact .contact-sidebar .contact-methods {

    margin-bottom: 40px;

  }



  .contact .contact-sidebar .contact-method {

    margin-bottom: 30px;

  }

}



/*--------------------------------------------------------------

# Service Details Section

--------------------------------------------------------------*/

.service-details .service-hero {

  margin-bottom: 4rem;

}



.service-details .service-hero .service-meta {

  display: flex;

  align-items: center;

  gap: 1rem;

  margin-bottom: 1.5rem;

}



.service-details .service-hero .service-meta .service-category {

  background: color-mix(in srgb, var(--accent-color), transparent 85%);

  color: var(--accent-color);

  padding: 0.5rem 1rem;

  border-radius: 20px;

  font-size: 0.85rem;

  font-weight: 500;

  letter-spacing: 0.5px;

}



.service-details .service-hero .service-meta .reading-time {

  color: color-mix(in srgb, var(--default-color), transparent 50%);

  font-size: 0.9rem;

  font-weight: 300;

}



.service-details .service-hero h1 {

  font-size: 3.5rem;

  font-weight: 300;

  line-height: 1.2;

  margin-bottom: 1.5rem;

  color: var(--heading-color);

  letter-spacing: -0.02em;

}



.service-details .service-hero .service-description {

  font-size: 1.25rem;

  line-height: 1.7;

  color: color-mix(in srgb, var(--default-color), transparent 25%);

  font-weight: 300;

  margin: 0;

}



.service-details .service-visual {

  margin-bottom: 4rem;

  overflow: hidden;

  border-radius: 4px;

}



.service-details .service-visual img {

  width: 100%;

  height: 400px;

  object-fit: cover;

  transition: transform 0.5s ease;

}



.service-details .service-visual img:hover {

  transform: scale(1.02);

}



.service-details .service-narrative {

  margin-bottom: 5rem;

}



.service-details .service-narrative h3 {

  font-size: 2rem;

  font-weight: 300;

  margin-bottom: 2rem;

  color: var(--heading-color);

  letter-spacing: -0.01em;

}



.service-details .service-narrative p {

  font-size: 1.1rem;

  line-height: 1.8;

  margin-bottom: 2rem;

  color: var(--default-color);

  font-weight: 300;

}



.service-details .benefits-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 2.5rem;

  margin-top: 3rem;

}



.service-details .benefits-grid .benefit-card {

  text-align: center;

  padding: 0;

}



.service-details .benefits-grid .benefit-card .benefit-icon {

  width: 60px;

  height: 60px;

  background: color-mix(in srgb, var(--accent-color), transparent 90%);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  margin: 0 auto 1.5rem;

  transition: all 0.3s ease;

}



.service-details .benefits-grid .benefit-card .benefit-icon i {

  font-size: 1.5rem;

  color: var(--accent-color);

}



.service-details .benefits-grid .benefit-card:hover .benefit-icon {

  background: var(--accent-color);

  transform: translateY(-2px);

}



.service-details .benefits-grid .benefit-card:hover .benefit-icon i {

  color: var(--contrast-color);

}



.service-details .benefits-grid .benefit-card h4 {

  font-size: 1.2rem;

  font-weight: 400;

  margin-bottom: 1rem;

  color: var(--heading-color);

}



.service-details .benefits-grid .benefit-card p {

  font-size: 1rem;

  line-height: 1.6;

  color: color-mix(in srgb, var(--default-color), transparent 30%);

  margin: 0;

}



.service-details .timeline-section {

  margin-bottom: 4rem;

}



.service-details .timeline-section h3 {

  font-size: 2rem;

  font-weight: 300;

  margin-bottom: 3rem;

  color: var(--heading-color);

  letter-spacing: -0.01em;

}



.service-details .timeline-section .timeline {

  position: relative;

}



.service-details .timeline-section .timeline::before {

  content: "";

  position: absolute;

  left: 30px;

  top: 0;

  bottom: 0;

  width: 1px;

  background: color-mix(in srgb, var(--default-color), transparent 85%);

}



.service-details .timeline-section .timeline .timeline-item {

  position: relative;

  padding-left: 80px;

  margin-bottom: 3rem;

}



.service-details .timeline-section .timeline .timeline-item:last-child {

  margin-bottom: 0;

}



.service-details .timeline-section .timeline .timeline-item .timeline-marker {

  position: absolute;

  left: 0;

  top: 0;

  width: 60px;

  height: 60px;

  background: var(--surface-color);

  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  z-index: 1;

}



.service-details .timeline-section .timeline .timeline-item .timeline-marker span {

  font-size: 1.2rem;

  font-weight: 500;

  color: var(--accent-color);

}



.service-details .timeline-section .timeline .timeline-item .timeline-content h4 {

  font-size: 1.3rem;

  font-weight: 400;

  margin-bottom: 0.75rem;

  color: var(--heading-color);

}



.service-details .timeline-section .timeline .timeline-item .timeline-content p {

  font-size: 1rem;

  line-height: 1.6;

  margin-bottom: 0.5rem;

  color: var(--default-color);

}



.service-details .timeline-section .timeline .timeline-item .timeline-content small {

  color: color-mix(in srgb, var(--default-color), transparent 40%);

  font-size: 0.9rem;

  font-weight: 500;

}



.service-details .service-sidebar {

  padding-left: 2rem;

}



@media (max-width: 992px) {

  .service-details .service-sidebar {

    padding-left: 0;

    margin-top: 4rem;

  }

}



.service-details .overview-card,

.service-details .success-story,

.service-details .consultation-form {

  background: var(--surface-color);

  border-radius: 8px;

  padding: 2.5rem;

  margin-bottom: 2.5rem;

  border: 1px solid color-mix(in srgb, var(--default-color), transparent 93%);

  transition: all 0.3s ease;

}



.service-details .overview-card:hover,

.service-details .success-story:hover,

.service-details .consultation-form:hover {

  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);

}



.service-details .overview-card .overview-header h4 {

  font-size: 1.4rem;

  font-weight: 400;

  margin-bottom: 2rem;

  color: var(--heading-color);

}



.service-details .overview-card .overview-stats {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 1.5rem;

  margin-bottom: 2rem;

}



.service-details .overview-card .overview-stats .stat-item {

  text-align: center;

}



.service-details .overview-card .overview-stats .stat-item .stat-number {

  font-size: 2rem;

  font-weight: 300;

  color: var(--accent-color);

  line-height: 1;

  margin-bottom: 0.5rem;

}



.service-details .overview-card .overview-stats .stat-item .stat-label {

  font-size: 0.85rem;

  color: color-mix(in srgb, var(--default-color), transparent 40%);

  font-weight: 500;

  text-transform: uppercase;

  letter-spacing: 0.5px;

}



.service-details .overview-card .overview-details {

  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);

  padding-top: 1.5rem;

}



.service-details .overview-card .overview-details .detail-row {

  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 1rem;

}



.service-details .overview-card .overview-details .detail-row:last-child {

  margin-bottom: 0;

}



.service-details .overview-card .overview-details .detail-row .detail-label {

  font-size: 0.95rem;

  color: color-mix(in srgb, var(--default-color), transparent 30%);

  font-weight: 400;

}



.service-details .overview-card .overview-details .detail-row .detail-value {

  font-size: 0.95rem;

  color: var(--heading-color);

  font-weight: 500;

}



.service-details .success-story .story-quote p {

  font-size: 1.1rem;

  line-height: 1.7;

  color: color-mix(in srgb, var(--default-color), transparent 20%);

  font-style: italic;

  margin-bottom: 2rem;

}



.service-details .success-story .story-author {

  display: flex;

  align-items: center;

  gap: 1rem;

  margin-bottom: 1.5rem;

}



.service-details .success-story .story-author .author-avatar {

  width: 50px;

  height: 50px;

  border-radius: 50%;

  object-fit: cover;

}



.service-details .success-story .story-author .author-details h5 {

  font-size: 1rem;

  font-weight: 500;

  margin-bottom: 0.25rem;

  color: var(--heading-color);

}



.service-details .success-story .story-author .author-details span {

  display: block;

  font-size: 0.9rem;

  color: color-mix(in srgb, var(--default-color), transparent 40%);

  margin-bottom: 0.25rem;

}



.service-details .success-story .story-author .author-details small {

  font-size: 0.8rem;

  color: color-mix(in srgb, var(--default-color), transparent 50%);

}



.service-details .success-story .story-metrics {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 1rem;

  padding-top: 1.5rem;

  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);

}



.service-details .success-story .story-metrics .metric {

  text-align: center;

}



.service-details .success-story .story-metrics .metric .metric-value {

  font-size: 1.5rem;

  font-weight: 500;

  color: var(--accent-color);

  display: block;

  margin-bottom: 0.25rem;

}



.service-details .success-story .story-metrics .metric .metric-label {

  font-size: 0.8rem;

  color: color-mix(in srgb, var(--default-color), transparent 40%);

  text-transform: uppercase;

  letter-spacing: 0.5px;

}



.service-details .consultation-form .form-header {

  margin-bottom: 2rem;

}



.service-details .consultation-form .form-header h4 {

  font-size: 1.4rem;

  font-weight: 400;

  margin-bottom: 0.75rem;

  color: var(--heading-color);

}



.service-details .consultation-form .form-header p {

  font-size: 0.95rem;

  line-height: 1.6;

  color: color-mix(in srgb, var(--default-color), transparent 30%);

  margin: 0;

}



.service-details .consultation-form .form-group {

  margin-bottom: 1.5rem;

}



.service-details .consultation-form .form-input {

  width: 100%;

  padding: 1rem;

  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);

  border-radius: 4px;

  font-size: 0.95rem;

  transition: all 0.3s ease;

  background: transparent;

}



.service-details .consultation-form .form-input:focus {

  outline: none;

  border-color: var(--accent-color);

  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);

}



.service-details .consultation-form input[type=text],

.service-details .consultation-form input[type=email],

.service-details .consultation-form input[type=tel],

.service-details .consultation-form select,

.service-details .consultation-form textarea {

  color: var(--default-color);

  background-color: var(--surface-color);

  font-size: 14px;

  border-color: color-mix(in srgb, var(--default-color), transparent 80%);

}



.service-details .consultation-form input[type=text]:focus,

.service-details .consultation-form input[type=email]:focus,

.service-details .consultation-form input[type=tel]:focus,

.service-details .consultation-form select:focus,

.service-details .consultation-form textarea:focus {

  border-color: var(--accent-color);

}



.service-details .consultation-form input[type=text]::placeholder,

.service-details .consultation-form input[type=email]::placeholder,

.service-details .consultation-form input[type=tel]::placeholder,

.service-details .consultation-form select::placeholder,

.service-details .consultation-form textarea::placeholder {

  color: color-mix(in srgb, var(--default-color), transparent 70%);

}



.service-details .consultation-form .btn-consultation {

  background: var(--accent-color);

  color: var(--contrast-color);

  border: none;

  padding: 1rem 2rem;

  border-radius: 4px;

  font-size: 0.95rem;

  font-weight: 500;

  width: 100%;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 0.5rem;

  transition: all 0.3s ease;

  text-transform: none;

}



.service-details .consultation-form .btn-consultation:hover {

  background: color-mix(in srgb, var(--accent-color), transparent 10%);

  transform: translateY(-1px);

}



.service-details .consultation-form .btn-consultation i {

  font-size: 0.9rem;

}



@media (max-width: 768px) {

  .service-details .service-hero h1 {

    font-size: 2.5rem;

  }



  .service-details .service-hero .service-description {

    font-size: 1.1rem;

  }



  .service-details .service-visual img {

    height: 250px;

  }



  .service-details .benefits-grid {

    grid-template-columns: 1fr;

    gap: 2rem;

  }



  .service-details .timeline-section .timeline::before {

    left: 20px;

  }



  .service-details .timeline-section .timeline .timeline-item {

    padding-left: 60px;

  }



  .service-details .timeline-section .timeline .timeline-item .timeline-marker {

    width: 40px;

    height: 40px;

  }



  .service-details .timeline-section .timeline .timeline-item .timeline-marker span {

    font-size: 1rem;

  }



  .service-details .overview-card .overview-stats {

    grid-template-columns: 1fr;

    gap: 1rem;

  }

}



/*--------------------------------------------------------------

# Starter Section Section

--------------------------------------------------------------*/

.starter-section {

  /* Add your styles here */

}



/*--------------------------------------------------------------

# Portfolio Details Section

--------------------------------------------------------------*/

.portfolio-details {

  --section-spacing: 5rem;

  --content-spacing: 4rem;

  --subtle-border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);

}



.portfolio-details .project-hero {

  margin-bottom: var(--section-spacing);

}



.portfolio-details .project-hero .hero-content {

  text-align: center;

  max-width: 800px;

  margin: 0 auto 3rem;

}



.portfolio-details .project-hero .hero-content .project-category {

  font-size: 0.85rem;

  letter-spacing: 0.1em;

  text-transform: uppercase;

  color: var(--accent-color);

  margin-bottom: 1rem;

  font-weight: 500;

}



.portfolio-details .project-hero .hero-content .project-title {

  font-size: 3.5rem;

  font-weight: 300;

  line-height: 1.2;

  margin-bottom: 1.5rem;

  color: var(--heading-color);

  letter-spacing: -0.02em;

}



.portfolio-details .project-hero .hero-content .project-subtitle {

  font-size: 1.125rem;

  line-height: 1.7;

  color: color-mix(in srgb, var(--default-color), transparent 25%);

  font-weight: 400;

  margin-bottom: 0;

}



.portfolio-details .project-hero .project-meta-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

  gap: 2rem;

  padding-top: 3rem;

  border-top: var(--subtle-border);

}



.portfolio-details .project-hero .project-meta-grid .meta-column {

  text-align: center;

}



.portfolio-details .project-hero .project-meta-grid .meta-column .meta-label {

  font-size: 0.8rem;

  text-transform: uppercase;

  letter-spacing: 0.1em;

  color: color-mix(in srgb, var(--default-color), transparent 50%);

  margin-bottom: 0.5rem;

}



.portfolio-details .project-hero .project-meta-grid .meta-column .meta-value {

  font-size: 1rem;

  font-weight: 500;

  color: var(--heading-color);

}



.portfolio-details .visual-showcase {

  margin-bottom: var(--section-spacing);

}



.portfolio-details .visual-showcase .main-visual {

  border-radius: 8px;

  overflow: hidden;

}



.portfolio-details .visual-showcase .main-visual .swiper-wrapper {

  height: auto !important;

}



.portfolio-details .visual-showcase .main-visual .swiper-slide img {

  width: 100%;

  height: 600px;

  object-fit: cover;

}



.portfolio-details .visual-showcase .main-visual .swiper-button-next,

.portfolio-details .visual-showcase .main-visual .swiper-button-prev {

  width: 50px;

  height: 50px;

  background-color: color-mix(in srgb, var(--contrast-color), transparent 10%);

  border-radius: 50%;

  color: var(--heading-color);

  font-size: 1.2rem;

  font-weight: 600;

  transition: all 0.3s ease;

}



.portfolio-details .visual-showcase .main-visual .swiper-button-next::after,

.portfolio-details .visual-showcase .main-visual .swiper-button-prev::after {

  font-size: 1rem;

  font-weight: 600;

}



.portfolio-details .visual-showcase .main-visual .swiper-button-next:hover,

.portfolio-details .visual-showcase .main-visual .swiper-button-prev:hover {

  background-color: var(--accent-color);

  color: var(--contrast-color);

  transform: scale(1.1);

}



.portfolio-details .visual-showcase .main-visual .swiper-button-prev {

  left: 30px;

}



.portfolio-details .visual-showcase .main-visual .swiper-button-next {

  right: 30px;

}



.portfolio-details .content-section {

  margin-bottom: var(--section-spacing);

}



.portfolio-details .content-section .project-overview {

  text-align: center;

}



.portfolio-details .content-section .project-overview h2 {

  font-size: 2.75rem;

  font-weight: 300;

  margin-bottom: 2rem;

  color: var(--heading-color);

  letter-spacing: -0.02em;

}



.portfolio-details .content-section .project-overview .overview-text {

  font-size: 1.125rem;

  line-height: 1.8;

  color: color-mix(in srgb, var(--default-color), transparent 15%);

  margin-bottom: 4rem;

}



.portfolio-details .content-section .project-overview .challenge-solution {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 4rem;

  text-align: left;

}



.portfolio-details .content-section .project-overview .challenge-solution .challenge-block h3,

.portfolio-details .content-section .project-overview .challenge-solution .solution-block h3 {

  font-size: 1.5rem;

  font-weight: 400;

  margin-bottom: 1rem;

  color: var(--heading-color);

}



.portfolio-details .content-section .project-overview .challenge-solution .challenge-block p,

.portfolio-details .content-section .project-overview .challenge-solution .solution-block p {

  color: color-mix(in srgb, var(--default-color), transparent 25%);

  line-height: 1.7;

}



.portfolio-details .metrics-showcase {

  padding: 4rem 0;

  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);

  margin: var(--section-spacing) -15px;

  border-radius: 8px;

}



.portfolio-details .metrics-showcase .metrics-content h3 {

  font-size: 2.25rem;

  font-weight: 300;

  margin-bottom: 1rem;

  color: var(--heading-color);

}



.portfolio-details .metrics-showcase .metrics-content p {

  font-size: 1rem;

  color: color-mix(in srgb, var(--default-color), transparent 25%);

  line-height: 1.7;

}



.portfolio-details .metrics-showcase .metrics-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 2rem;

}



.portfolio-details .metrics-showcase .metrics-grid .metric-item {

  text-align: center;

  padding: 1.5rem;

}



.portfolio-details .metrics-showcase .metrics-grid .metric-item .metric-number {

  font-size: 2.5rem;

  font-weight: 300;

  color: var(--accent-color);

  margin-bottom: 0.5rem;

  line-height: 1;

}



.portfolio-details .metrics-showcase .metrics-grid .metric-item .metric-label {

  font-size: 0.9rem;

  color: color-mix(in srgb, var(--default-color), transparent 40%);

  line-height: 1.4;

}



.portfolio-details .technology-stack {

  margin-bottom: var(--section-spacing);

  padding-top: 3rem;

  border-top: var(--subtle-border);

}



.portfolio-details .technology-stack h3 {

  font-size: 1.5rem;

  font-weight: 400;

  color: var(--heading-color);

  margin-bottom: 0;

}



.portfolio-details .technology-stack .tech-categories {

  display: flex;

  flex-direction: column;

  gap: 2rem;

}



.portfolio-details .technology-stack .tech-categories .tech-category .category-title {

  font-size: 1rem;

  font-weight: 500;

  color: var(--heading-color);

  margin-bottom: 1rem;

}



.portfolio-details .technology-stack .tech-categories .tech-category .tech-list {

  display: flex;

  flex-wrap: wrap;

  gap: 0.75rem;

}



.portfolio-details .technology-stack .tech-categories .tech-category .tech-list .tech-item {

  padding: 0.5rem 1rem;

  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);

  color: var(--accent-color);

  border-radius: 20px;

  font-size: 0.85rem;

  font-weight: 500;

  transition: all 0.3s ease;

}



.portfolio-details .technology-stack .tech-categories .tech-category .tech-list .tech-item:hover {

  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);

  transform: translateY(-2px);

}



.portfolio-details .process-gallery {

  margin-bottom: var(--section-spacing);

}



.portfolio-details .process-gallery h3 {

  font-size: 2.25rem;

  font-weight: 300;

  text-align: center;

  margin-bottom: 3rem;

  color: var(--heading-color);

}



.portfolio-details .process-gallery .gallery-masonry {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 1.5rem;

}



.portfolio-details .process-gallery .gallery-masonry .gallery-item {

  position: relative;

  border-radius: 8px;

  overflow: hidden;

  transition: all 0.4s ease;

}



.portfolio-details .process-gallery .gallery-masonry .gallery-item.large {

  grid-row: span 2;

}



.portfolio-details .process-gallery .gallery-masonry .gallery-item img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: all 0.5s ease;

}



.portfolio-details .process-gallery .gallery-masonry .gallery-item .gallery-caption {

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));

  color: white;

  padding: 2rem 1.5rem 1.5rem;

  font-weight: 500;

  transform: translateY(100%);

  transition: all 0.3s ease;

}



.portfolio-details .process-gallery .gallery-masonry .gallery-item:hover {

  transform: translateY(-5px);

}



.portfolio-details .process-gallery .gallery-masonry .gallery-item:hover img {

  transform: scale(1.05);

}



.portfolio-details .process-gallery .gallery-masonry .gallery-item:hover .gallery-caption {

  transform: translateY(0);

}



.portfolio-details .key-features-section {

  margin-bottom: var(--section-spacing);

}



.portfolio-details .key-features-section .features-intro {

  padding-right: 2rem;

}



.portfolio-details .key-features-section .features-intro h3 {

  font-size: 2.25rem;

  font-weight: 300;

  margin-bottom: 1rem;

  color: var(--heading-color);

}



.portfolio-details .key-features-section .features-intro p {

  color: color-mix(in srgb, var(--default-color), transparent 25%);

  line-height: 1.7;

}



.portfolio-details .key-features-section .features-list .feature-row {

  display: flex;

  align-items: flex-start;

  gap: 1.5rem;

  margin-bottom: 2.5rem;

}



.portfolio-details .key-features-section .features-list .feature-row:last-child {

  margin-bottom: 0;

}



.portfolio-details .key-features-section .features-list .feature-row .feature-icon {

  width: 50px;

  height: 50px;

  border-radius: 50%;

  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

}



.portfolio-details .key-features-section .features-list .feature-row .feature-icon i {

  font-size: 1.2rem;

  color: var(--accent-color);

}



.portfolio-details .key-features-section .features-list .feature-row .feature-content h4 {

  font-size: 1.25rem;

  font-weight: 500;

  margin-bottom: 0.5rem;

  color: var(--heading-color);

}



.portfolio-details .key-features-section .features-list .feature-row .feature-content p {

  color: color-mix(in srgb, var(--default-color), transparent 25%);

  line-height: 1.7;

  margin-bottom: 0;

}



.portfolio-details .project-footer {

  padding-top: 3rem;

  border-top: var(--subtle-border);

}



.portfolio-details .project-footer .footer-navigation {

  display: flex;

  justify-content: space-between;

  align-items: center;

}



.portfolio-details .project-footer .footer-navigation .nav-link {

  display: flex;

  flex-direction: column;

  text-decoration: none;

  transition: all 0.3s ease;

}



.portfolio-details .project-footer .footer-navigation .nav-link.prev-project,

.portfolio-details .project-footer .footer-navigation .nav-link.next-project {

  color: var(--heading-color);

}



.portfolio-details .project-footer .footer-navigation .nav-link.prev-project .nav-direction,

.portfolio-details .project-footer .footer-navigation .nav-link.next-project .nav-direction {

  font-size: 0.8rem;

  text-transform: uppercase;

  letter-spacing: 0.1em;

  color: color-mix(in srgb, var(--default-color), transparent 50%);

  margin-bottom: 0.25rem;

}



.portfolio-details .project-footer .footer-navigation .nav-link.prev-project .nav-title,

.portfolio-details .project-footer .footer-navigation .nav-link.next-project .nav-title {

  font-size: 1.1rem;

  font-weight: 500;

}



.portfolio-details .project-footer .footer-navigation .nav-link.prev-project:hover,

.portfolio-details .project-footer .footer-navigation .nav-link.next-project:hover {

  color: var(--accent-color);

  transform: translateY(-3px);

}



.portfolio-details .project-footer .footer-navigation .nav-link.next-project {

  text-align: right;

}



.portfolio-details .project-footer .footer-navigation .nav-link.all-projects {

  display: flex;

  flex-direction: row;

  align-items: center;

  gap: 0.5rem;

  padding: 0.75rem 1.5rem;

  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);

  border-radius: 25px;

  color: var(--heading-color);

  font-weight: 500;

  transition: all 0.3s ease;

}



.portfolio-details .project-footer .footer-navigation .nav-link.all-projects i {

  font-size: 1rem;

}



.portfolio-details .project-footer .footer-navigation .nav-link.all-projects:hover {

  background-color: var(--accent-color);

  border-color: var(--accent-color);

  color: var(--contrast-color);

  transform: translateY(-3px);

}



@media (max-width: 991px) {

  .portfolio-details .project-hero .hero-content .project-title {

    font-size: 3rem;

  }



  .portfolio-details .project-hero .project-meta-grid {

    grid-template-columns: repeat(2, 1fr);

  }



  .portfolio-details .content-section .project-overview .challenge-solution {

    grid-template-columns: 1fr;

    gap: 3rem;

  }



  .portfolio-details .content-section .project-overview h2 {

    font-size: 2.25rem;

  }



  .portfolio-details .metrics-showcase .metrics-grid {

    grid-template-columns: 1fr;

    gap: 1.5rem;

  }



  .portfolio-details .key-features-section .features-intro {

    margin-bottom: 2rem;

    padding-right: 0;

  }

}



@media (max-width: 768px) {

  .portfolio-details {

    --section-spacing: 3rem;

  }



  .portfolio-details .project-hero .hero-content .project-title {

    font-size: 2.5rem;

  }



  .portfolio-details .project-hero .project-meta-grid {

    grid-template-columns: 1fr;

    gap: 1.5rem;

  }



  .portfolio-details .visual-showcase .main-visual .swiper-slide img {

    height: 400px;

  }



  .portfolio-details .visual-showcase .main-visual .swiper-button-next,

  .portfolio-details .visual-showcase .main-visual .swiper-button-prev {

    width: 40px;

    height: 40px;

  }



  .portfolio-details .visual-showcase .main-visual .swiper-button-next::after,

  .portfolio-details .visual-showcase .main-visual .swiper-button-prev::after {

    font-size: 0.9rem;

  }



  .portfolio-details .visual-showcase .main-visual .swiper-button-prev {

    left: 15px;

  }



  .portfolio-details .visual-showcase .main-visual .swiper-button-next {

    right: 15px;

  }



  .portfolio-details .content-section .project-overview h2 {

    font-size: 2rem;

  }



  .portfolio-details .project-footer .footer-navigation {

    flex-direction: column;

    gap: 2rem;

    text-align: center;

  }



  .portfolio-details .project-footer .footer-navigation .nav-link.prev-project,

  .portfolio-details .project-footer .footer-navigation .nav-link.next-project {

    text-align: center;

  }



  .portfolio-details .project-footer .footer-navigation .nav-link.all-projects {

    order: -1;

  }



  .portfolio-details .technology-stack .tech-categories .tech-category .tech-list .tech-item {

    font-size: 0.8rem;

    padding: 0.4rem 0.8rem;

  }

}



@media (max-width: 576px) {

  .portfolio-details .gallery-masonry {

    grid-template-columns: 1fr !important;

  }



  .portfolio-details .gallery-masonry .gallery-item.large {

    grid-row: span 1;

  }



  .portfolio-details .metrics-showcase {

    margin-left: 0;

    margin-right: 0;

    border-radius: 0;

  }

}



/*--------------------------------------------------------------

# Paginas de servicio (detalle)

--------------------------------------------------------------*/



/* La seccion va sobre el azul de marca: texto en claro. */

.service-details {

  --default-color: var(--brand-tint);

  --heading-color: var(--brand-gold-light);

}



/* Las tarjetas de la columna lateral son blancas: ahi vuelve el texto oscuro. */

.service-details .overview-card {

  --default-color: var(--brand-ink);

  --heading-color: var(--brand-primary);

}



.service-details .service-hero h2 {

  font-size: 2.75rem;

  font-weight: 300;

  line-height: 1.2;

  margin-bottom: 1.5rem;

  color: var(--heading-color);

  letter-spacing: -0.02em;

}



/* Aire entre la grilla de beneficios y el titulo que sigue */

.service-details .benefits-grid {

  margin-bottom: 4rem;

}



.service-details .service-checklist {

  list-style: none;

  padding: 0;

  margin: 0 0 1rem 0;

}



.service-details .service-checklist li {

  display: flex;

  align-items: flex-start;

  gap: 0.85rem;

  padding: 0.85rem 0;

  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);

  font-size: 1rem;

  line-height: 1.6;

}



.service-details .service-checklist li:last-child {

  border-bottom: 0;

}



.service-details .service-checklist li i {

  color: var(--accent-color);

  font-size: 1.1rem;

  line-height: 1.5;

  flex-shrink: 0;

}



.service-details .aside-text {

  font-size: 1rem;

  line-height: 1.7;

  color: var(--default-color);

  margin-bottom: 1.75rem;

}



.service-details .aside-btn {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  width: 100%;

  padding: 15px 18px;

  background: #000;

  color: var(--brand-tint);

  font-size: 14px;

  font-weight: 500;

  text-transform: uppercase;

  letter-spacing: 1px;

  text-decoration: none;

  transition: all 0.3s ease;

}



.service-details .aside-btn:hover {

  background: var(--accent-color);

  color: var(--brand-deep);

}



.service-details .aside-btn--ghost {

  margin-top: 12px;

  background: transparent;

  color: var(--heading-color);

  border: 1px solid color-mix(in srgb, var(--default-color), transparent 82%);

}



.service-details .aside-services {

  list-style: none;

  padding: 0;

  margin: 0;

}



.service-details .aside-services li+li {

  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);

}



.service-details .aside-services a {

  display: flex;

  align-items: center;

  gap: 0.9rem;

  padding: 0.95rem 0;

  color: var(--default-color);

  font-size: 0.98rem;

  line-height: 1.4;

  text-decoration: none;

  transition: color 0.3s ease, padding-left 0.3s ease;

}



.service-details .aside-services a:hover {

  color: var(--accent-color);

  padding-left: 6px;

}



.service-details .aside-services a i {

  color: var(--accent-color);

  font-size: 1.15rem;

  flex-shrink: 0;

}



@media (max-width: 768px) {

  .service-details .service-hero h1 {

    font-size: 28px;

  }

}





/*--------------------------------------------------------------

# Hero de marca - Dra. Nadia Solange Tourino

--------------------------------------------------------------*/

.hero .hero-glow {

  position: absolute;

  inset: 0;

  z-index: 1;

  background:

    radial-gradient(60% 55% at 50% 38%, rgba(201, 162, 77, 0.16) 0%, rgba(201, 162, 77, 0) 70%),

    radial-gradient(90% 70% at 50% 100%, rgba(28, 5, 11, 0.85) 0%, rgba(28, 5, 11, 0) 65%);

  pointer-events: none;

}



.hero .hero-iso {

  display: block;

  width: min(42vw, 190px);

  height: auto;

  margin: 0 auto 1.75rem;

  filter: drop-shadow(0 12px 34px rgba(0, 0, 0, 0.55));

}



.hero .hero-eyebrow {

  display: inline-block;

  font-size: 0.8rem;

  letter-spacing: 3px;

  text-transform: uppercase;

  color: var(--brand-gold);

  margin-bottom: 1.1rem;

}



.hero .hero-eyebrow::after {

  content: "";

  display: block;

  width: 46px;

  height: 1px;

  margin: 10px auto 0;

  background: var(--brand-gold);

  opacity: 0.7;

}



.hero h1 {

  font-size: clamp(2rem, 5.2vw, 3.6rem);

  color: var(--brand-tint);

  letter-spacing: 0.5px;

}



.hero p {

  color: color-mix(in srgb, var(--brand-tint), transparent 18%);

  max-width: 640px;

  margin-left: auto;

  margin-right: auto;

}



@media (max-width: 575px) {

  .hero .hero-iso {

    width: min(48vw, 140px);

    margin-bottom: 1.25rem;

  }

}



/* Filete dorado entre secciones claras y oscuras */

.section.dark-background + .section:not(.dark-background),

.section:not(.dark-background) + .section.dark-background {

  border-top: 1px solid color-mix(in srgb, var(--brand-gold), transparent 78%);

}





/*--------------------------------------------------------------

# Hero con foto a sangre

--------------------------------------------------------------*/

.hero-photo {

  min-height: min(76vh, 680px);

  padding: 140px 0 70px;

  align-items: center;

}



.hero-photo .hero-media {

  position: absolute;

  inset: 0;

  z-index: 0;

  overflow: hidden;

}



/* La imagen del hero es 2:1. Si la caja es mas ancha, "cover" recorta arriba y abajo

   y se come la cabeza de la figura. Atando el alto a la proporcion, entra entera. */

.hero-light {

  min-height: 0;

  height: auto;

  padding: 0;

}



.hero-light .hero-media {

  position: relative;

  inset: auto;

  width: 100%;

  aspect-ratio: 1717 / 916;

  max-height: 860px;

}



.hero-light .hero-content {

  position: absolute;

  inset: 0;

  z-index: 3;

}



.hero-photo .hero-media img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  object-position: 62% 50%;

  display: block;

}



/* Velo azul: garantiza contraste del texto sin importar como recorte la foto */

.hero-photo .hero-scrim {

  position: absolute;

  inset: 0;

  background:

    linear-gradient(100deg,

      color-mix(in srgb, var(--brand-deep), transparent 15%) 0%,

      color-mix(in srgb, var(--brand-deep), transparent 35%) 26%,

      color-mix(in srgb, var(--brand-deep), transparent 70%) 46%,

      color-mix(in srgb, var(--brand-deep), transparent 100%) 66%),

    linear-gradient(to top,

      color-mix(in srgb, var(--brand-deep), transparent 35%) 0%,

      color-mix(in srgb, var(--brand-deep), transparent 100%) 38%);

  pointer-events: none;

}



.hero-photo .hero-iso {

  width: min(26vw, 86px);

  margin: 0 0 1.15rem;

}



.hero-photo .hero-eyebrow::after {

  margin-left: 0;

}



.hero-photo h1 {

  font-size: clamp(1.85rem, 3.3vw, 2.9rem);

}



.hero-photo p {

  margin-left: 0;

  margin-right: 0;

  max-width: 32rem;

}



.hero-photo .hero-buttons {

  justify-content: flex-start;

}



/* Tablet y mobile: la foto arriba, el texto debajo sobre el azul */

@media (max-width: 991px) {

  .hero-photo,

  .hero-photo .hero-content {

    min-height: 0;

    height: auto;

  }



  .hero-photo {

    padding: 0 0 64px;

    display: block;

  }



  .hero-photo .hero-media {

    position: relative;

    inset: auto;

    height: 68vw;

    max-height: 400px;

    margin-top: 96px;

  }



  .hero-photo .hero-media img {

    object-position: 52% 24%;

  }



  .hero-photo .hero-scrim {

    background: linear-gradient(to bottom,

      color-mix(in srgb, var(--brand-deep), transparent 88%) 0%,

      color-mix(in srgb, var(--brand-deep), transparent 70%) 52%,

      color-mix(in srgb, var(--brand-deep), var(--brand-primary) 30%) 97%);

  }



  .hero-photo .hero-content {

    display: block;

    min-height: 0;

    padding-top: 8px;

  }



  .hero-photo .hero-iso {

    width: min(30vw, 92px);

    margin: -46px auto 1.1rem;

    position: relative;

    z-index: 4;

  }



  .hero-photo .hero-eyebrow::after {

    margin-left: auto;

  }



  .hero-photo p {

    margin-left: auto;

    margin-right: auto;

  }



  .hero-photo .hero-buttons {

    justify-content: center;

  }

}





/*--------------------------------------------------------------

# Hero claro (fondo crema): invierte los colores del hero oscuro

--------------------------------------------------------------*/

.hero-light {

  --background-color: var(--brand-surface);

  --default-color: var(--brand-ink);

  --heading-color: var(--brand-primary);

  background-color: var(--brand-surface);

  background-image: none;

}



.hero-light .hero-media img {

  object-position: 50% 50%;

}



/* Velo claro: despeja la izquierda para el texto sin ensuciar la imagen */

.hero-light .hero-scrim {

  background:

    linear-gradient(100deg,

      color-mix(in srgb, var(--brand-surface), transparent 8%) 0%,

      color-mix(in srgb, var(--brand-surface), transparent 25%) 30%,

      color-mix(in srgb, var(--brand-surface), transparent 68%) 52%,

      color-mix(in srgb, var(--brand-surface), transparent 100%) 72%);

}



.hero-light .hero-eyebrow {

  color: var(--brand-primary);

}



.hero-light .hero-eyebrow::after {

  background: var(--brand-primary);

  opacity: 1;

}



/* Titulo en dorado sobre fondo claro. El degradado se mantiene en el rango oscuro

   del dorado: mas claro que esto el trazo no llega al 3:1 que pide el texto grande. */

.hero-light h1 {

  font-weight: 700;

  background: linear-gradient(100deg,

    color-mix(in srgb, var(--brand-gold-deep), black 20%) 0%,

    var(--brand-gold-deep) 42%,

    color-mix(in srgb, var(--brand-gold), var(--brand-gold-deep) 50%) 100%);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

  text-shadow: none;

}



.hero-light p {

  color: color-mix(in srgb, var(--brand-ink), transparent 12%);

}



.hero-light .hero-buttons .btn.btn-outline {

  color: var(--brand-primary);

  border-color: var(--brand-primary);

}



.hero-light .hero-buttons .btn.btn-outline:hover {

  background-color: var(--brand-primary);

  color: var(--brand-tint);

  border-color: var(--brand-primary);

}



/* Header sobre el hero claro: la navegacion pasa a azul hasta que se scrollea */

/* Home: el header es transparente SOLO mientras no se scrollea.

   El degradado crema mantiene legible la navegacion sobre las zonas con dibujo del hero. */

.index-page:not(.scrolled):not(.mobile-nav-active) .header {

  background-color: transparent;

  background-image: linear-gradient(to bottom,

    color-mix(in srgb, var(--brand-surface), transparent 10%) 0%,

    color-mix(in srgb, var(--brand-surface), transparent 50%) 62%,

    color-mix(in srgb, var(--brand-surface), transparent 100%) 100%);

  box-shadow: none;

}



.index-page:not(.scrolled):not(.mobile-nav-active) .navmenu a,

.index-page:not(.scrolled):not(.mobile-nav-active) .navmenu a:focus,

.index-page:not(.scrolled):not(.mobile-nav-active) .navmenu > ul > li > a,

.index-page:not(.scrolled):not(.mobile-nav-active) .mobile-nav-toggle {

  color: var(--brand-primary);

  text-shadow: none;

}



/* Nombre dorado y bajada azul. Sobre fondo claro va el dorado oscuro:

   es texto chico, necesita 4.5:1 y el dorado brillante no llega. */

.index-page:not(.scrolled):not(.mobile-nav-active) .logo .logo-text strong {

  color: var(--brand-gold-deep);

}



.index-page:not(.scrolled):not(.mobile-nav-active) .logo .logo-text small {

  color: var(--brand-primary);

}



.index-page:not(.scrolled):not(.mobile-nav-active) .navmenu > ul > li > a:before {

  background-color: var(--brand-gold-deep);

}



.index-page:not(.scrolled):not(.mobile-nav-active) .header .logo img {

  filter: none;

}



/* Mobile: la foto arriba, el texto debajo sobre crema */

@media (max-width: 991px) {

  .hero-light .hero-media {

    aspect-ratio: 4 / 3;

    max-height: 380px;

    margin-top: 92px;

  }



  .hero-light .hero-content {

    position: static;

    inset: auto;

    padding-bottom: 56px;

  }



  .hero-light .hero-scrim {

    background: linear-gradient(to bottom,

      color-mix(in srgb, var(--brand-surface), transparent 94%) 0%,

      color-mix(in srgb, var(--brand-surface), transparent 76%) 55%,

      var(--brand-surface) 98%);

  }



  .hero-light .hero-iso {

    margin: -46px auto 1.1rem;

    position: relative;

    z-index: 4;

  }

}





/*--------------------------------------------------------------

# Boton "Ver trayectoria profesional" (seccion About)

--------------------------------------------------------------*/

.about .cta-wrapper .btn-trayectoria {

  display: inline-flex;

  align-items: center;

  gap: 1rem;

  padding: 14px 26px 14px 16px;

  border-radius: 999px;

  background: var(--brand-primary);

  border: 1px solid var(--brand-primary);

  color: var(--brand-surface);

  text-decoration: none;

  transition: all 0.3s ease;

  box-shadow: 0 10px 26px color-mix(in srgb, var(--brand-primary), transparent 78%);

}



.about .cta-wrapper .btn-trayectoria .btn-trayectoria-icon {

  flex: none;

  width: 42px;

  height: 42px;

  border-radius: 50%;

  display: grid;

  place-items: center;

  background: var(--brand-gold);

  color: var(--brand-deep);

  font-size: 20px;

  transition: transform 0.3s ease;

}



.about .cta-wrapper .btn-trayectoria .btn-trayectoria-text {

  display: flex;

  flex-direction: column;

  line-height: 1.25;

  text-align: left;

}



.about .cta-wrapper .btn-trayectoria .btn-trayectoria-text strong {

  font-family: var(--heading-font);

  font-size: 1rem;

  font-weight: 600;

  letter-spacing: 0.2px;

}



.about .cta-wrapper .btn-trayectoria .btn-trayectoria-text small {

  font-size: 0.78rem;

  color: var(--brand-celeste);

}



.about .cta-wrapper .btn-trayectoria .btn-trayectoria-arrow {

  margin-left: 0.25rem;

  color: var(--brand-gold);

  transition: transform 0.3s ease;

}



.about .cta-wrapper .btn-trayectoria:hover {

  background: var(--brand-deep);

  border-color: var(--brand-deep);

  transform: translateY(-2px);

  box-shadow: 0 14px 32px color-mix(in srgb, var(--brand-primary), transparent 65%);

}



.about .cta-wrapper .btn-trayectoria:hover .btn-trayectoria-icon {

  transform: rotate(-8deg) scale(1.06);

}



.about .cta-wrapper .btn-trayectoria:hover .btn-trayectoria-arrow {

  transform: translateX(4px);

}



@media (max-width: 420px) {

  .about .cta-wrapper .btn-trayectoria {

    gap: 0.75rem;

    padding: 12px 18px 12px 12px;

  }



  .about .cta-wrapper .btn-trayectoria .btn-trayectoria-text strong {

    font-size: 0.92rem;

  }

}



/*--------------------------------------------------------------

# Pagina de trayectoria

--------------------------------------------------------------*/

.page-hero {

  position: relative;

  padding: 190px 0 90px;

  color: var(--default-color);

}



.page-hero .page-crumbs {

  display: flex;

  align-items: center;

  gap: 0.6rem;

  font-size: 0.85rem;

  margin-bottom: 1.75rem;

  color: color-mix(in srgb, var(--brand-tint), transparent 35%);

}



.page-hero .page-crumbs a {

  color: var(--brand-celeste);

}



.page-hero .page-crumbs a:hover {

  color: var(--brand-gold);

}



.page-hero .page-crumbs i {

  font-size: 0.7rem;

}



.page-hero .page-eyebrow {

  display: inline-block;

  font-size: 0.8rem;

  letter-spacing: 3px;

  text-transform: uppercase;

  color: var(--brand-gold);

  margin-bottom: 0.9rem;

}



.page-hero h1 {

  font-size: clamp(2.1rem, 4.6vw, 3.2rem);

  color: var(--brand-gold);

  margin-bottom: 1.1rem;

}



.page-hero p {

  max-width: 40rem;

  color: color-mix(in srgb, var(--brand-tint), transparent 12%);

  font-size: 1.08rem;

}



/* Intro */

.trayectoria-intro {

  padding-top: 70px;

  padding-bottom: 20px;

}



.trayectoria-intro .lead-intro {

  font-size: 1.1rem;

  line-height: 1.85;

  margin-bottom: 1.4rem;

}



.trayectoria-intro .lead-intro strong {

  color: var(--brand-primary);

}



/* Tarjetas de titulos */

.credentials .credential-card {

  height: 100%;

  background: var(--surface-color);

  border: 1px solid color-mix(in srgb, var(--brand-celeste), transparent 55%);

  border-radius: 14px;

  padding: 32px 28px;

  transition: all 0.35s ease;

}



.credentials .credential-card:hover {

  transform: translateY(-6px);

  border-color: color-mix(in srgb, var(--brand-gold), transparent 45%);

  box-shadow: 0 18px 40px color-mix(in srgb, var(--brand-deep), transparent 88%);

}



.credentials .credential-top {

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 22px;

}



.credentials .credential-icon {

  width: 52px;

  height: 52px;

  border-radius: 50%;

  display: grid;

  place-items: center;

  font-size: 24px;

  color: var(--brand-deep);

  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-light));

}



.credentials .credential-year {

  font-family: var(--heading-font);

  font-size: 1.5rem;

  font-weight: 700;

  color: color-mix(in srgb, var(--brand-primary), transparent 55%);

  line-height: 1;

}



.credentials .credential-card h3 {

  font-size: 1.25rem;

  font-weight: 600;

  color: var(--brand-primary);

  margin-bottom: 0.5rem;

  line-height: 1.3;

}



.credentials .credential-inst {

  font-size: 0.86rem;

  color: var(--brand-gold-deep);

  margin-bottom: 1rem;

  line-height: 1.5;

}



.credentials .credential-desc {

  font-size: 0.95rem;

  line-height: 1.7;

  color: color-mix(in srgb, var(--default-color), transparent 18%);

  margin-bottom: 0;

}



/* Matriculas */

.registros .registro-card {

  display: flex;

  align-items: flex-start;

  gap: 1rem;

  height: 100%;

  background: var(--surface-color);

  border-left: 3px solid var(--brand-gold);

  border-radius: 10px;

  padding: 24px 26px;

  box-shadow: 0 10px 30px color-mix(in srgb, var(--brand-deep), transparent 92%);

}



.registros .registro-card i {

  font-size: 26px;

  color: var(--brand-primary);

  line-height: 1.2;

}



.registros .registro-card h4 {

  font-size: 1.02rem;

  font-weight: 600;

  color: var(--brand-primary);

  margin-bottom: 0.35rem;

  line-height: 1.35;

}



.registros .registro-card p {

  font-size: 0.9rem;

  margin-bottom: 0;

  color: color-mix(in srgb, var(--default-color), transparent 22%);

}



.registros .distincion {

  display: flex;

  align-items: center;

  gap: 1rem;

  margin-top: 2.5rem;

  padding: 18px 24px;

  border: 1px dashed color-mix(in srgb, var(--brand-gold), transparent 55%);

  border-radius: 10px;

}



.registros .distincion i {

  font-size: 24px;

  color: var(--brand-gold-deep);

}



.registros .distincion p {

  margin-bottom: 0;

  font-size: 0.93rem;

  color: color-mix(in srgb, var(--default-color), transparent 15%);

}



.registros .distincion strong {

  color: var(--brand-primary);

}



@media (max-width: 768px) {

  .page-hero {

    padding: 150px 0 70px;

  }

}





/*--------------------------------------------------------------

# Galeria de diplomas

--------------------------------------------------------------*/

.registros .registro-num {

  margin-top: 0.55rem;

  margin-bottom: 0;

  font-family: var(--heading-font);

  font-size: 0.88rem;

  font-weight: 600;

  color: var(--brand-gold-deep);

  letter-spacing: 0.3px;

}



.diplomas .diploma-item {

  position: relative;

  display: block;

  border-radius: 12px;

  overflow: hidden;

  background: var(--surface-color);

  border: 1px solid color-mix(in srgb, var(--brand-celeste), transparent 55%);

  transition: all 0.35s ease;

}



/* Un diploma se lee entero o no se lee: "contain" en vez de "cover". */

.diplomas .diploma-item img {

  display: block;

  width: 100%;

  aspect-ratio: 4 / 3;

  object-fit: contain;

  background: #ffffff;

  padding: 10px;

  transition: transform 0.5s ease;

}



.diplomas .diploma-item:hover {

  border-color: color-mix(in srgb, var(--brand-gold), transparent 35%);

  box-shadow: 0 18px 42px color-mix(in srgb, var(--brand-deep), transparent 85%);

  transform: translateY(-5px);

}



.diplomas .diploma-item:hover img {

  transform: scale(1.04);

}



.diplomas .diploma-zoom {

  position: absolute;

  top: 14px;

  right: 14px;

  width: 38px;

  height: 38px;

  border-radius: 50%;

  display: grid;

  place-items: center;

  font-size: 15px;

  color: var(--brand-deep);

  background: var(--brand-gold);

  opacity: 0;

  transform: scale(0.8);

  transition: all 0.3s ease;

}



.diplomas .diploma-item:hover .diploma-zoom {

  opacity: 1;

  transform: scale(1);

}



.diplomas .diploma-cap {

  display: block;

  padding: 16px 20px 18px;

  border-top: 1px solid color-mix(in srgb, var(--brand-celeste), transparent 65%);

}



.diplomas .diploma-cap strong {

  display: block;

  font-family: var(--heading-font);

  font-size: 1rem;

  font-weight: 600;

  color: var(--brand-primary);

  line-height: 1.3;

}



.diplomas .diploma-cap small {

  display: block;

  margin-top: 3px;

  font-size: 0.82rem;

  color: var(--brand-gold-deep);

}



.diplomas .diplomas-nota {

  display: flex;

  align-items: center;

  gap: 0.6rem;

  justify-content: center;

  margin-top: 2.5rem;

  margin-bottom: 0;

  font-size: 0.88rem;

  color: color-mix(in srgb, var(--default-color), transparent 30%);

  text-align: center;

}



.diplomas .diplomas-nota i {

  font-size: 1rem;

  color: var(--brand-gold-deep);

}





/*--------------------------------------------------------------

# Landings por localidad + seccion de zonas

--------------------------------------------------------------*/

.zona-page .page-hero .zona-hero-btn {

  display: inline-flex;

  align-items: center;

  margin-top: 1.6rem;

  padding: 14px 30px;

  border-radius: 999px;

  background: var(--brand-gold);

  color: var(--brand-deep);

  font-weight: 600;

  text-decoration: none;

  transition: all 0.3s ease;

}



.zona-page .page-hero .zona-hero-btn:hover {

  background: var(--brand-gold-light);

  color: var(--brand-deep);

  transform: translateY(-2px);

}



.zona-intro {

  padding-top: 70px;

  padding-bottom: 30px;

}



.zona-intro .lead-intro {

  font-size: 1.1rem;

  line-height: 1.85;

  margin-bottom: 1.4rem;

}



.zona-intro .lead-intro strong {

  color: var(--brand-primary);

}



.zona-trat {

  height: 100%;

  background: var(--surface-color);

  border: 1px solid color-mix(in srgb, var(--brand-celeste), transparent 55%);

  border-radius: 14px;

  padding: 30px 26px;

  transition: all 0.35s ease;

}



.zona-trat:hover {

  transform: translateY(-5px);

  border-color: color-mix(in srgb, var(--brand-gold), transparent 45%);

  box-shadow: 0 16px 38px color-mix(in srgb, var(--brand-deep), transparent 88%);

}



.zona-trat-icon {

  width: 52px;

  height: 52px;

  border-radius: 50%;

  display: grid;

  place-items: center;

  font-size: 23px;

  margin-bottom: 18px;

  color: var(--brand-deep);

  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-light));

}



.zona-trat h3 {

  font-size: 1.15rem;

  font-weight: 600;

  color: var(--brand-primary);

  margin-bottom: 0.6rem;

}



.zona-trat p {

  font-size: 0.95rem;

  line-height: 1.7;

  margin-bottom: 0;

  color: color-mix(in srgb, var(--default-color), transparent 18%);

}



.zona-trat-todos {

  text-align: center;

  margin: 2.5rem 0 0;

}



.zona-trat-todos a {

  color: var(--brand-primary);

  font-weight: 600;

  text-decoration: none;

}



.zona-trat-todos a:hover {

  color: var(--brand-gold-deep);

}



/* Como atiendo */

.acceso-box {

  display: flex;

  gap: 1.4rem;

  align-items: flex-start;

  padding: 34px 36px;

  border-radius: 14px;

  background: var(--brand-tint);

  border-left: 4px solid var(--brand-gold);

}



.acceso-box > i {

  font-size: 30px;

  color: var(--brand-primary);

  line-height: 1.1;

}



.acceso-box h2 {

  font-size: 1.5rem;

  color: var(--brand-primary);

  margin-bottom: 0.7rem;

}



.acceso-box p {

  margin-bottom: 0;

  line-height: 1.8;

}



.acceso-box .acceso-mods {

  display: flex;

  flex-wrap: wrap;

  gap: 0.7rem;

  margin-top: 1.2rem;

}



.acceso-box .acceso-mods span {

  display: inline-flex;

  align-items: center;

  gap: 0.45rem;

  padding: 7px 16px;

  border-radius: 999px;

  font-size: 0.85rem;

  font-weight: 600;

  color: var(--brand-primary);

  background: var(--surface-color);

  border: 1px solid color-mix(in srgb, var(--brand-celeste), transparent 45%);

}



@media (max-width: 575px) {

  .acceso-box {

    flex-direction: column;

    padding: 26px 22px;

  }

}



/* Grilla de zonas (en las landings y en el index) */

.zonas-list {

  list-style: none;

  padding: 0;

  margin: 0;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));

  gap: 14px;

}



.zonas-list a {

  display: flex;

  align-items: center;

  gap: 0.6rem;

  padding: 16px 20px;

  border-radius: 10px;

  background: var(--surface-color);

  border: 1px solid color-mix(in srgb, var(--brand-celeste), transparent 55%);

  color: var(--brand-primary);

  font-weight: 600;

  text-decoration: none;

  transition: all 0.3s ease;

}



.zonas-list a::before {

  content: "\F3C5";

  font-family: "bootstrap-icons";

  font-weight: 400;

  color: var(--brand-gold-deep);

}



.zonas-list a:hover {

  border-color: var(--brand-gold);

  background: var(--brand-tint);

  transform: translateY(-3px);

}



.zonas-list .zona-principal a {

  background: var(--brand-primary);

  border-color: var(--brand-primary);

  color: var(--brand-surface);

}



.zonas-list .zona-principal a::before {

  color: var(--brand-gold);

}



.zonas-list .zona-principal a:hover {

  background: var(--brand-deep);

  border-color: var(--brand-deep);

}





/*--------------------------------------------------------------

# Linea de localidad dentro del H1 + zona actual en la grilla

--------------------------------------------------------------*/

/* El H1 lleva el nombre y la keyword local. El nombre manda visualmente,

   pero la localidad queda dentro del H1, que es lo que lee el buscador. */

.hero-light h1 .h1-loc {

  display: block;

  margin-top: 0.35rem;

  font-size: 0.42em;

  font-weight: 600;

  letter-spacing: 0.5px;

  color: var(--brand-primary);

  -webkit-text-fill-color: var(--brand-primary);

}



@media (max-width: 991px) {

  .hero-light h1 .h1-loc {

    font-size: 0.5em;

  }

}



/* La localidad en la que ya estas no se linkea a si misma */

.zonas-list .zona-actual span {

  display: flex;

  align-items: center;

  gap: 0.6rem;

  padding: 16px 20px;

  border-radius: 10px;

  background: var(--brand-primary);

  border: 1px solid var(--brand-primary);

  color: var(--brand-surface);

  font-weight: 600;

}



.zonas-list .zona-actual span::before {

  content: "\F3C5";

  font-family: "bootstrap-icons";

  font-weight: 400;

  color: var(--brand-gold);

}



/* Las preguntas propias de la localidad se marcan con el pin en vez del numero */

.faq .faq-item .faq-header .faq-number i {

  font-size: 1.15rem;

  color: var(--brand-gold-deep);

}



.contact .contact-sidebar .contact-method .contact-details .metodo-extra {

  font-size: 0.86rem;

  color: color-mix(in srgb, var(--brand-tint), transparent 30%);

}





/*--------------------------------------------------------------

# Equipo

--------------------------------------------------------------*/

.equipo .miembro {

  display: flex;

  gap: 1.6rem;

  align-items: flex-start;

  height: 100%;

}



.equipo .miembro-foto {

  flex: none;

  width: 190px;

}



.equipo .miembro-foto img {

  width: 100%;

  aspect-ratio: 4 / 5;

  object-fit: cover;

  object-position: 50% 30%;

  display: block;

  /* Mismo arco con filete dorado que el retrato de la home */

  border-radius: 50% 50% 10px 10px / 34% 34% 10px 10px;

  box-shadow:

    0 0 0 1px color-mix(in srgb, var(--brand-gold), transparent 30%),

    0 0 0 8px color-mix(in srgb, var(--brand-gold), transparent 90%),

    0 18px 44px color-mix(in srgb, var(--brand-deep), transparent 86%);

}



/* El nombre va en dorado. Mismo degradado que el H1 del hero: el dorado pleno

   no llega al contraste minimo sobre fondo claro. */

.equipo .miembro-info h3 {

  font-size: 1.45rem;

  font-weight: 700;

  margin-bottom: 0.35rem;

  line-height: 1.2;

  background: linear-gradient(100deg,

    color-mix(in srgb, var(--brand-gold-deep), black 20%) 0%,

    var(--brand-gold-deep) 45%,

    color-mix(in srgb, var(--brand-gold), var(--brand-gold-deep) 50%) 100%);

  -webkit-background-clip: text;

  background-clip: text;

  color: transparent;

}



.equipo .miembro-rol {

  font-size: 0.9rem;

  font-weight: 600;

  letter-spacing: 0.3px;

  color: var(--brand-primary);

  margin-bottom: 1.1rem;

  padding-bottom: 1.1rem;

  border-bottom: 1px solid color-mix(in srgb, var(--brand-gold), transparent 72%);

}



/* Credenciales: una debajo de otra, se leen de un vistazo */

.equipo .miembro-creds {

  list-style: none;

  padding: 0;

  margin: 0 0 1.2rem;

}



.equipo .miembro-creds li {

  position: relative;

  padding-left: 1.5rem;

  margin-bottom: 0.6rem;

  font-size: 0.97rem;

  font-weight: 600;

  line-height: 1.45;

  color: var(--brand-primary);

}



.equipo .miembro-creds li::before {

  content: "\F26E";

  font-family: "bootstrap-icons";

  font-weight: 400;

  position: absolute;

  left: 0;

  top: 0.05em;

  font-size: 0.95rem;

  color: var(--brand-gold);

}



.equipo .miembro-creds li span {

  display: block;

  font-size: 0.85rem;

  font-weight: 400;

  color: color-mix(in srgb, var(--default-color), transparent 32%);

}



.equipo .miembro-desc {

  font-size: 0.96rem;

  line-height: 1.75;

  margin-bottom: 0.85rem;

  color: color-mix(in srgb, var(--default-color), transparent 15%);

}



.equipo .miembro-tags {

  list-style: none;

  padding: 0;

  margin: 0 0 1rem;

  display: flex;

  flex-wrap: wrap;

  gap: 7px;

}



.equipo .miembro-tags li {

  font-size: 0.78rem;

  font-weight: 600;

  padding: 5px 13px;

  border-radius: 999px;

  color: var(--brand-primary);

  background: var(--brand-tint);

  border: 1px solid color-mix(in srgb, var(--brand-celeste), transparent 50%);

}



.equipo .miembro-alcance {

  display: flex;

  gap: 0.55rem;

  align-items: flex-start;

  font-size: 0.86rem;

  line-height: 1.6;

  margin-bottom: 0;

  padding: 12px 15px;

  border-radius: 8px;

  background: color-mix(in srgb, var(--brand-celeste), transparent 82%);

  color: color-mix(in srgb, var(--default-color), transparent 12%);

}



.equipo .miembro-alcance i {

  color: var(--brand-primary);

  font-size: 1rem;

  line-height: 1.45;

}



@media (max-width: 575px) {

  .equipo .miembro {

    flex-direction: column;

    gap: 1.2rem;

  }



  .equipo .miembro-foto {

    width: 160px;

    margin: 0 auto;

  }



  .equipo .miembro-info {

    text-align: center;

  }



  .equipo .miembro-tags {

    justify-content: center;

  }



  .equipo .miembro-alcance {

    text-align: left;

  }

}





/*--------------------------------------------------------------

# Casos clinicos

--------------------------------------------------------------*/

.page-hero .caso-destacado {

  font-size: 1.15rem;

  font-style: italic;

  color: var(--brand-gold-light);

  max-width: 46rem;

  margin-top: 1rem;

}



/* --- Hub --- */

.casos-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));

  gap: 26px;

}



.caso-card {

  display: flex;

  flex-direction: column;

  background: var(--surface-color);

  border: 1px solid color-mix(in srgb, var(--brand-celeste), transparent 55%);

  border-radius: 16px;

  padding: 32px 30px;

  transition: all 0.35s ease;

}



.caso-card:hover {

  transform: translateY(-6px);

  border-color: color-mix(in srgb, var(--brand-gold), transparent 45%);

  box-shadow: 0 20px 44px color-mix(in srgb, var(--brand-deep), transparent 86%);

}



.caso-card-cond {

  align-self: flex-start;

  font-size: 0.72rem;

  font-weight: 700;

  letter-spacing: 1.4px;

  text-transform: uppercase;

  color: var(--brand-deep);

  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-light));

  padding: 6px 14px;

  border-radius: 999px;

  margin-bottom: 1.1rem;

}



.caso-card h2 {

  font-size: 1.35rem;

  line-height: 1.3;

  margin-bottom: 0.7rem;

}



.caso-card h2 a {

  color: var(--brand-primary);

  text-decoration: none;

}



.caso-card h2 a:hover {

  color: var(--brand-gold-deep);

}



.caso-card-destacado {

  font-style: italic;

  font-size: 0.98rem;

  color: var(--brand-gold-deep);

  margin-bottom: 0.9rem;

}



.caso-card p {

  font-size: 0.95rem;

  line-height: 1.75;

  color: color-mix(in srgb, var(--default-color), transparent 15%);

}



.caso-card-tags {

  list-style: none;

  padding: 0;

  margin: 1.1rem 0 1.4rem;

  display: flex;

  flex-wrap: wrap;

  gap: 7px;

}



.caso-card-tags li {

  font-size: 0.74rem;

  font-weight: 600;

  padding: 5px 11px;

  border-radius: 999px;

  color: var(--brand-primary);

  background: var(--brand-tint);

  border: 1px solid color-mix(in srgb, var(--brand-celeste), transparent 55%);

}



.caso-card-link {

  margin-top: auto;

  font-weight: 600;

  color: var(--brand-primary);

  text-decoration: none;

}



.caso-card-link:hover {

  color: var(--brand-gold-deep);

}



/* --- Pagina de caso --- */

.caso-cuerpo {

  padding-top: 66px;

}



.caso-cuerpo p {

  font-size: 1.06rem;

  line-height: 1.9;

  margin-bottom: 1.4rem;

}



.caso-cuerpo strong {

  color: var(--brand-primary);

}



.caso-cuerpo h2 {

  font-size: 1.5rem;

  color: var(--brand-primary);

  margin: 2.4rem 0 1.2rem;

}



.caso-lista {

  list-style: none;

  padding: 0;

  margin: 0 0 1.8rem;

}



.caso-lista li {

  position: relative;

  padding-left: 1.7rem;

  margin-bottom: 0.75rem;

  line-height: 1.7;

}



.caso-lista li::before {

  content: "\F26E";

  font-family: "bootstrap-icons";

  position: absolute;

  left: 0;

  top: 0.1em;

  color: var(--brand-gold);

}



.caso-volver {

  padding-left: 1.3rem;

  border-left: 3px solid var(--brand-gold);

  font-size: 1.12rem !important;

  line-height: 2 !important;

  color: var(--brand-primary);

}



.caso-cierre {

  margin-top: 2rem;

  padding: 26px 28px;

  border-radius: 14px;

  background: var(--brand-tint);

  border-left: 4px solid var(--brand-gold);

  font-size: 1.05rem !important;

}



.caso-aviso {

  margin-top: 2.6rem;

  padding: 18px 20px;

  border-radius: 10px;

  background: color-mix(in srgb, var(--brand-celeste), transparent 82%);

  font-size: 0.86rem !important;

  line-height: 1.7 !important;

  color: color-mix(in srgb, var(--default-color), transparent 22%);

}



.caso-aviso i {

  color: var(--brand-primary);

  margin-right: 0.4rem;

}



/* Columna lateral */

.caso-aside {

  position: sticky;

  top: 120px;

  background: var(--brand-tint);

  border: 1px solid color-mix(in srgb, var(--brand-celeste), transparent 55%);

  border-radius: 16px;

  padding: 28px 26px;

}



.caso-aside h2 {

  font-size: 1.05rem;

  margin: 0 0 1.1rem;

  color: var(--brand-primary);

}



.caso-tecnicas {

  list-style: none;

  padding: 0;

  margin: 0 0 1.5rem;

}



.caso-tecnicas li {

  position: relative;

  padding-left: 1.4rem;

  margin-bottom: 0.65rem;

  font-size: 0.92rem;

  line-height: 1.5;

  color: var(--brand-primary);

  font-weight: 600;

}



.caso-tecnicas li::before {

  content: "";

  position: absolute;

  left: 0;

  top: 0.55em;

  width: 7px;

  height: 7px;

  border-radius: 50%;

  background: var(--brand-gold);

}



.caso-aside-btn {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 0.5rem;

  padding: 13px 18px;

  border-radius: 999px;

  background: var(--brand-primary);

  color: var(--brand-surface);

  font-weight: 600;

  text-decoration: none;

  transition: all 0.3s ease;

}



.caso-aside-btn:hover {

  background: var(--brand-deep);

  color: var(--brand-surface);

  transform: translateY(-2px);

}



@media (max-width: 991px) {

  .caso-aside {

    position: static;

    margin-top: 2.5rem;

  }

}



/* Otros casos */

.otros-casos {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 18px;

}



.otro-caso {

  display: flex;

  flex-direction: column;

  gap: 0.4rem;

  padding: 24px 26px;

  border-radius: 14px;

  background: var(--surface-color);

  border: 1px solid color-mix(in srgb, var(--brand-celeste), transparent 55%);

  text-decoration: none;

  transition: all 0.3s ease;

}



.otro-caso:hover {

  transform: translateY(-4px);

  border-color: var(--brand-gold);

}



.otro-caso-cond {

  font-size: 0.72rem;

  font-weight: 700;

  letter-spacing: 1.3px;

  text-transform: uppercase;

  color: var(--brand-gold-deep);

}



.otro-caso-tit {

  font-family: var(--heading-font);

  font-size: 1.1rem;

  font-weight: 600;

  line-height: 1.35;

  color: var(--brand-primary);

}



.otro-caso-mas {

  margin-top: 0.4rem;

  font-size: 0.88rem;

  font-weight: 600;

  color: var(--brand-primary);

}





/* Cita textual dentro de un caso */

.caso-cita {

  margin: 2rem 0;

  padding: 24px 28px;

  border-left: 4px solid var(--brand-gold);

  background: var(--brand-tint);

  border-radius: 0 12px 12px 0;

  font-size: 1.1rem;

  font-style: italic;

  line-height: 1.8;

  color: var(--brand-primary);

}



/* Los momentos bisagra del relato */

.caso-hito {

  margin: 1.8rem 0 !important;

  padding: 18px 24px;

  border-radius: 12px;

  background: linear-gradient(120deg,

    color-mix(in srgb, var(--brand-gold), transparent 88%),

    color-mix(in srgb, var(--brand-celeste), transparent 82%));

  border: 1px solid color-mix(in srgb, var(--brand-gold), transparent 62%);

  font-size: 1.18rem !important;

  text-align: center;

}



.caso-hito strong {

  color: var(--brand-primary);

}





/* Testimonio de paciente dentro de un caso.

   Va sin marcado Review a proposito: Google no admite resenas propias

   sobre el propio negocio para rich snippets. */

.caso-testimonio {

  margin: 2.2rem 0;

  padding: 30px 32px;

  border-radius: 16px;

  background: linear-gradient(140deg,

    color-mix(in srgb, var(--brand-celeste), transparent 84%),

    color-mix(in srgb, var(--brand-gold), transparent 92%));

  border: 1px solid color-mix(in srgb, var(--brand-gold), transparent 60%);

}



.caso-estrellas {

  display: flex;

  gap: 4px;

  font-size: 1.05rem;

  color: var(--brand-gold);

  margin-bottom: 1rem;

}



.caso-testimonio blockquote {

  margin: 0;

  font-size: 1.12rem;

  font-style: italic;

  line-height: 1.85;

  color: var(--brand-primary);

  position: relative;

}



.caso-testimonio blockquote::before {

  content: "“";

  font-family: var(--heading-font);

  font-size: 3.4rem;

  line-height: 0;

  color: color-mix(in srgb, var(--brand-gold), transparent 45%);

  margin-right: 0.15em;

  vertical-align: -0.35em;

}



.caso-testimonio figcaption {

  margin-top: 1rem;

  font-size: 0.9rem;

  font-weight: 700;

  letter-spacing: 0.4px;

  color: var(--brand-gold-deep);

}



.caso-testimonio figcaption::before {

  content: "— ";

}



/* Galeria de fotos dentro de un caso */
.caso-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin: 2.2rem 0;
}

.caso-galeria figure {
  margin: 0;
}

.caso-galeria img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--brand-celeste), transparent 55%);
  box-shadow: 0 10px 26px color-mix(in srgb, var(--brand-deep), transparent 88%);
}

.caso-galeria figcaption {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}


/* Una sola foto: se respeta su proporcion en vez de recortarla a 4:3 */
.caso-galeria--una {
  grid-template-columns: 1fr;
}

.caso-galeria--una img {
  aspect-ratio: auto;
}


/*--------------------------------------------------------------
# Mi historia
--------------------------------------------------------------*/
.historia-cuerpo p {
  font-size: 1.06rem;
  line-height: 1.9;
  margin-bottom: 1.3rem;
}

.historia-cuerpo strong {
  color: var(--brand-primary);
}

.historia-parte + .historia-parte {
  margin-top: 3.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid color-mix(in srgb, var(--brand-gold), transparent 72%);
}

.historia-parte > h2 {
  font-size: 1.75rem;
  line-height: 1.3;
  color: var(--brand-primary);
  margin-bottom: 2rem;
  padding-left: 1.1rem;
  border-left: 4px solid var(--brand-gold);
}

.historia-parte h3 {
  font-size: 1.3rem;
  color: var(--brand-primary);
  margin: 2.4rem 0 1.1rem;
}

.historia-siguiente {
  padding-top: 50px;
  padding-bottom: 50px;
}


/*--------------------------------------------------------------
# Ajuste del menu de escritorio
# Con 9 items en Cinzel (que es ancha) el menu se salia de pantalla
# y "Contacto" quedaba cortado. Menos cuerpo y menos aire entre items.
--------------------------------------------------------------*/
@media (min-width: 1200px) {

  .navmenu a,
  .navmenu a:focus {
    font-size: 15px;
    letter-spacing: -0.1px;
  }

  .navmenu > ul > li {
    padding: 15px 10px;
  }

  /* El bloque del logo tambien ocupa: se recorta un poco */
  .header .logo img {
    max-height: 52px;
    margin-right: 10px;
  }

  .header .logo .logo-text strong {
    font-size: 15.5px;
  }

  .header .logo .logo-text small {
    font-size: 9px;
    letter-spacing: 2px;
  }
}

/* Entre 1200 y 1450 el espacio es el mas justo de todos */
@media (min-width: 1200px) and (max-width: 1450px) {

  .navmenu a,
  .navmenu a:focus {
    font-size: 13.5px;
  }

  .navmenu > ul > li {
    padding: 15px 7px;
  }

  .header .logo img {
    max-height: 46px;
  }

  .header .logo .logo-text strong {
    font-size: 14px;
  }
}


/*--------------------------------------------------------------
# Areas: tarjetas de la seccion Areas (solo el nombre)
--------------------------------------------------------------*/
.areas-grid .area-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 34px 28px;
  border-radius: 16px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--brand-celeste), transparent 50%);
  text-decoration: none;
  transition: all 0.35s ease;
}

.areas-grid .area-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-gold);
  box-shadow: 0 18px 40px color-mix(in srgb, var(--brand-deep), transparent 86%);
}

.area-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 20px;
  color: var(--brand-deep);
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-light));
}

.areas-grid .area-card h3 {
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--brand-primary);
  margin-bottom: 1.2rem;
}

.area-card-cta {
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-gold-deep);
}

/*--------------------------------------------------------------
# Sobre mi: el detalle de cada area
--------------------------------------------------------------*/
.areas-detalle {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 22px;
  align-items: start;
}

.area-bloque {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--brand-celeste), transparent 55%);
  border-radius: 16px;
  padding: 30px 28px;
}

.area-bloque h3 {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--brand-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid color-mix(in srgb, var(--brand-gold), transparent 72%);
}

.area-emoji {
  font-size: 1.15rem;
  line-height: 1;
}

.area-bloque p {
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 0.9rem;
}

.area-bloque p:last-child {
  margin-bottom: 0;
}

.area-credencial {
  display: inline-block;
  font-size: 0.8rem !important;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--brand-deep);
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-light));
  padding: 5px 13px;
  border-radius: 999px;
  margin-bottom: 1rem !important;
}

.area-lista {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.area-lista li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.area-lista li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-gold);
}

.area-lista--dos {
  columns: 2;
  column-gap: 1.6rem;
}

@media (max-width: 575px) {
  .area-lista--dos {
    columns: 1;
  }
}

/* Los dos bloques de cierre ocupan el ancho completo */
.area-bloque--destacado,
.area-bloque--cierre {
  grid-column: 1 / -1;
}

.area-bloque--destacado {
  background: var(--brand-tint);
  border-left: 4px solid var(--brand-gold);
}

.area-bloque--cierre {
  background: var(--brand-tint);
}

.area-premisa {
  padding: 16px 20px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--brand-celeste), transparent 78%);
  font-size: 1.02rem !important;
  line-height: 1.8 !important;
}

.area-premisa strong {
  color: var(--brand-primary);
}

.area-vercasos a {
  font-weight: 600;
  color: var(--brand-primary);
  text-decoration: none;
}

.area-vercasos a:hover {
  color: var(--brand-gold-deep);
}


/* Las cards de areas viven ahora en la seccion Areas de atencion */
.services .areas-detalle {
  margin-top: 0;
}

.area-consultar {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.3rem;
  padding-top: 1.1rem;
  border-top: 1px solid color-mix(in srgb, var(--brand-celeste), transparent 60%);
  width: 100%;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.area-consultar:hover {
  color: var(--brand-gold-deep);
}

.area-bloque {
  display: flex;
  flex-direction: column;
}

.area-bloque .area-consultar {
  margin-top: auto;
}

/* El cierre de Sobre mi: una sola columna */
.areas-detalle--cierre {
  grid-template-columns: 1fr;
}


/* Icono de cada area: monolinea dorado, sin emoji de color */
.area-bloque h3 .area-icon {
  flex: none;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--brand-gold-deep);
  transform: translateY(1px);
}

.area-bloque:hover h3 .area-icon {
  color: var(--brand-gold);
}


/*--------------------------------------------------------------
# Areas de atencion: cards azules
# Solo dentro de #services. Los bloques de cierre de "Sobre mi"
# siguen siendo claros para no competir con estos.
--------------------------------------------------------------*/
.services .areas-detalle {
  align-items: stretch;   /* todas las de una fila, del mismo alto */
}

.services .area-bloque {
  background: linear-gradient(160deg, var(--brand-primary) 0%, var(--brand-deep) 100%);
  border: 1px solid color-mix(in srgb, var(--brand-gold), transparent 62%);
  box-shadow: 0 14px 34px color-mix(in srgb, var(--brand-deep), transparent 82%);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.services .area-bloque:hover {
  transform: translateY(-6px);
  border-color: var(--brand-gold);
  box-shadow: 0 22px 46px color-mix(in srgb, var(--brand-deep), transparent 68%);
}

.services .area-bloque h3 {
  color: var(--brand-gold-light);
  border-bottom-color: color-mix(in srgb, var(--brand-gold), transparent 55%);
}

.services .area-bloque h3 .area-icon,
.services .area-bloque:hover h3 .area-icon {
  color: var(--brand-gold);
}

.services .area-bloque p,
.services .area-bloque li {
  color: var(--brand-tint);
}

.services .area-bloque strong {
  color: var(--brand-gold-light);
}

.services .area-bloque em {
  color: color-mix(in srgb, var(--brand-tint), transparent 20%);
}

.services .area-bloque .area-lista li::before {
  background: var(--brand-gold);
}

.services .area-bloque .area-consultar {
  color: var(--brand-gold-light);
  border-top-color: color-mix(in srgb, var(--brand-gold), transparent 65%);
}

.services .area-bloque .area-consultar:hover {
  color: #ffffff;
}

/* La credencial de master: dorado pleno sobre el azul */
.services .area-bloque .area-credencial {
  color: var(--brand-deep);
}


/* Presentacion del Sobre mi */
.about .content .about-titulos {
  font-family: var(--heading-font);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brand-gold-deep);
  margin-bottom: 1.6rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--brand-gold), transparent 70%);
}

.about .content .about-subtitulo {
  font-size: 1.25rem;
  color: var(--brand-primary);
  margin: 2rem 0 1rem;
  padding-left: 0.9rem;
  border-left: 3px solid var(--brand-gold);
}


/*--------------------------------------------------------------
# Pagina de gracias
--------------------------------------------------------------*/
.gracias-hero {
  text-align: center;
}

.gracias-hero .page-crumbs {
  display: none;
}

.gracias-check {
  width: 74px;
  height: 74px;
  margin: 0 auto 1.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 34px;
  color: var(--brand-deep);
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-light));
  box-shadow: 0 0 0 10px color-mix(in srgb, var(--brand-gold), transparent 86%);
  animation: gracias-pop 0.5s cubic-bezier(0.22, 1.2, 0.4, 1) both;
}

@keyframes gracias-pop {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gracias-check {
    animation: none;
  }
}

.gracias-lead {
  max-width: 40rem;
  margin: 0 auto;
  font-size: 1.1rem;
}

.gracias-botones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.gracias-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.gracias-btn--wa {
  background: var(--brand-gold);
  color: var(--brand-deep);
}

.gracias-btn--wa:hover {
  background: var(--brand-gold-light);
  color: var(--brand-deep);
  transform: translateY(-2px);
}

.gracias-btn--ghost {
  color: var(--brand-tint);
  border: 1px solid color-mix(in srgb, var(--brand-tint), transparent 60%);
}

.gracias-btn--ghost:hover {
  border-color: var(--brand-gold);
  color: var(--brand-gold-light);
}

.gracias-mientras {
  padding-bottom: 40px;
}
