 :root {
     /* PALETA NUEVA */
     --color-rosa: #FAE0DF;
     /* rosado suave principal */
     --color-rosa-2: #F6F5F1;
     /* fondo claro */
     --color-rosa-oscuro: #55A1AE;
     /* acento teal */
     --color-dorado: #97CED1;
     /* acento azul suave */
     --color-gris: #6e6e73;
     --color-fondo: #F6F5F1;
     --color-blanco: #ffffff;
     --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.08);
     --radius-xl: 20px;
     --transition-base: 0.4s ease;
 }

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

 body {
     font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
     background: var(--color-fondo);
     color: #222;
     scroll-behavior: smooth;
     line-height: 1.6;
 }

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

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

 /* ------ Layout base ------ */

 .container {
     width: 100%;
     max-width: 1100px;
     margin: 0 auto;
     padding: 0 1.5rem;
 }

 section {
     padding: 5rem 0;
     position: relative;
     overflow: hidden;
 }

 .section-title {
     font-size: 2rem;
     font-weight: 600;
     text-align: center;
     margin-bottom: 2.5rem;
     color: #333;
     letter-spacing: 0.04em;
     text-transform: uppercase;
 }

 .section-subtitle {
     text-align: center;
     max-width: 640px;
     margin: 0.5rem auto 3rem;
     font-size: 0.95rem;
     color: var(--color-gris);
 }

 /* ------ Navbar ------ */
 /* Redes sociales en navbar */
 @media (max-width: 720px) {
     .icon-social {
         width: 18px;
         height: 18px;
     }
 }

 .social-links {
     display: flex;
     align-items: center;
     gap: 0.7rem;
     margin-right: 1rem;
 }

 .icon-social {
     opacity: 0.85;
     cursor: pointer;
     transition: opacity 0.3s ease, transform 0.3s ease;
 }

 .icon-social:hover {
     opacity: 1;
     transform: translateY(-2px);
 }


 .social-icon img {
     width: 22px;
     height: 22px;
     opacity: 0.85;
     transition: opacity 0.3s ease, transform 0.3s ease;
     filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.12));
 }

 .social-icon:hover img {
     opacity: 1;
     transform: translateY(-2px);
 }


 header {
     position: sticky;
     top: 0;
     z-index: 999;
     background: rgba(246, 245, 241, 0.9);
     backdrop-filter: blur(12px);
     border-bottom: 1px solid rgba(151, 206, 209, 0.3);
 }

 .navbar {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 0.9rem 0;
 }

 .logo {
     display: flex;
     align-items: center;
 }

 .logo-img {
     height: 80px;
     width: auto;
 }

 nav ul {
     list-style: none;
     display: flex;
     align-items: center;
     gap: 1.7rem;
     font-size: 0.9rem;
 }

 nav a {
     position: relative;
     padding-bottom: 0.1rem;
 }

 nav a::after {
     content: "";
     position: absolute;
     left: 0;
     bottom: -0.1rem;
     width: 0%;
     height: 2px;
     background: linear-gradient(90deg, var(--color-rosa-oscuro), var(--color-dorado));
     transition: width var(--transition-base);
     border-radius: 999px;
 }

 nav a:hover::after {
     width: 100%;
 }

 .btn-cta-nav {
     padding: 0.5rem 1.1rem;
     border-radius: 999px;
     border: none;
     cursor: pointer;
     font-size: 0.85rem;
     font-weight: 500;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     background: linear-gradient(120deg, var(--color-dorado), var(--color-rosa-oscuro));
     color: white;
     box-shadow: var(--shadow-soft);
     transition: transform var(--transition-base), box-shadow var(--transition-base), opacity var(--transition-base);
 }

 .btn-cta-nav:hover {
     transform: translateY(-1px);
     box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
     opacity: 0.95;
 }

 /* ------ Hero / About ------ */

 .contact-qr-block {
     margin-top: 1.2rem;
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     gap: 0.9rem;
 }

 .qr-wrapper {
     width: 180px;
     max-width: 100%;
     border-radius: 16px;
     overflow: hidden;
     background: #ffffff;
     padding: 0.75rem;
     box-shadow: var(--shadow-soft);
     border: 1px solid rgba(250, 224, 223, 0.9);
 }

 .qr-wrapper img {
     width: 100%;
     height: auto;
     display: block;
 }

 .qr-legend {
     font-size: 0.85rem;
     color: var(--color-gris);
     margin-top: 0.4rem;
     max-width: 260px;
 }


 #inicio {
     padding-top: 4rem;
 }

 .hero {
     display: grid;
     grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
     gap: 3rem;
     align-items: center;
 }

 .hero-copy-subtitle {
     font-size: 0.85rem;
     letter-spacing: 0.15em;
     text-transform: uppercase;
     color: var(--color-dorado);
     margin-bottom: 0.8rem;
 }

 .hero-title {
     font-size: 2.4rem;
     line-height: 1.15;
     margin-bottom: 1.2rem;
     font-weight: 600;
 }

 .hero-highlight {
     background: linear-gradient(120deg, var(--color-rosa-oscuro), var(--color-dorado));
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
 }

 .hero-text {
     font-size: 0.98rem;
     color: var(--color-gris);
     margin-bottom: 1.5rem;
     max-width: 420px;
 }

 .hero-pill {
     display: inline-flex;
     align-items: center;
     gap: 0.6rem;
     padding: 0.4rem 0.9rem;
     border-radius: 999px;
     background: rgba(250, 224, 223, 0.7);
     border: 1px solid rgba(151, 206, 209, 0.5);
     font-size: 0.8rem;
     margin-bottom: 1rem;
     color: #555;
 }

 .hero-pill-dot {
     width: 8px;
     height: 8px;
     border-radius: 999px;
     background: var(--color-dorado);
 }

 .hero-actions {
     display: flex;
     align-items: center;
     gap: 1rem;
     margin-top: 1rem;
     flex-wrap: wrap;
 }

 .btn-primary {
     padding: 0.85rem 1.6rem;
     border-radius: 999px;
     border: none;
     cursor: pointer;
     font-size: 0.9rem;
     font-weight: 500;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     background: linear-gradient(130deg, var(--color-rosa-oscuro), var(--color-dorado));
     color: white;
     box-shadow: var(--shadow-soft);
     transition: transform var(--transition-base), box-shadow var(--transition-base), opacity var(--transition-base);
 }

 .btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
     opacity: 0.96;
 }

 .btn-outline {
     padding: 0.8rem 1.4rem;
     border-radius: 999px;
     border: 1px solid rgba(151, 206, 209, 0.9);
     background: rgba(255, 255, 255, 0.9);
     cursor: pointer;
     font-size: 0.88rem;
     font-weight: 500;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     color: var(--color-gris);
     transition: background var(--transition-base), color var(--transition-base), border var(--transition-base), box-shadow var(--transition-base);
 }

 .btn-outline:hover {
     background: var(--color-rosa);
     border-color: var(--color-rosa-oscuro);
     color: #333;
     box-shadow: var(--shadow-soft);
 }

 .hero-badges {
     display: flex;
     gap: 1.5rem;
     flex-wrap: wrap;
     margin-top: 1.8rem;
     font-size: 0.82rem;
     color: var(--color-gris);
 }

 .hero-badge {
     display: flex;
     align-items: center;
     gap: 0.5rem;
 }

 .hero-badge-dot {
     width: 10px;
     height: 10px;
     border-radius: 999px;
     background: linear-gradient(135deg, var(--color-rosa-oscuro), var(--color-dorado));
 }

 .hero-visual {
     position: relative;
     padding: 1.5rem;
 }

 .hero-card {
     border-radius: 32px;
     padding: 0;
     position: relative;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     background: #FAE0DF;
 }

 /* Logo dentro de la tarjeta del hero */
 .hero-card-logo {
     position: absolute;
     top: 14px;
     left: 18px;
     z-index: 2;
     padding: 6px 10px;
     border-radius: 999px;
     background: rgba(246, 245, 241, 0.85);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
 }

 .hero-card-logo img {
     height: 50px;
     width: auto;
 }

 .hero-clinic-photo {
     width: 100%;
     height: 330px;
     overflow: hidden;
 }

 .hero-clinic-photo img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 18px;
 }

 .hero-floating-tag {
     position: absolute;
     top: 14px;
     right: 14px;
     background: #ffffff;
     border-radius: 20px;
     padding: 8px 12px;
     display: flex;
     align-items: center;
     gap: 6px;
     font-size: 0.75rem;
     box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
 }

 .hero-floating-tag span:first-child {
     width: 8px;
     height: 8px;
     background: #55A1AE;
     border-radius: 50%;
 }

 .hero-stats-card {
     position: absolute;
     bottom: 18px;
     left: 18px;
     right: 18px;
     background: rgba(255, 255, 255, 0.7);
     backdrop-filter: blur(12px);
     border-radius: 20px;
     padding: 14px 18px;
     box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
     font-size: 0.85rem;
     line-height: 1.35;
 }

 .hero-stats-highlight {
     font-size: 1rem;
     font-weight: 600;
     color: #55A1AE;
     margin-bottom: 3px;
 }

 .hero-gradient-circle {
     position: absolute;
     width: 200px;
     height: 200px;
     bottom: -60px;
     right: -40px;
     background: radial-gradient(circle at center,
             rgba(151, 206, 209, 0.45),
             rgba(250, 224, 223, 0.65));
     border-radius: 50%;
     filter: blur(4px);
 }

 /* ------ Método Renace 360 (bloque 1) ------ */

 #metodo {
     background:
         radial-gradient(circle at 0% 0%, rgba(250, 224, 223, 0.7), transparent 55%),
         radial-gradient(circle at 100% 0%, rgba(151, 206, 209, 0.4), transparent 50%),
         var(--color-fondo);
 }

 .metodo-grid {
     display: grid;
     grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
     gap: 2.5rem;
     align-items: center;
 }

 /* Logo pequeño en el título del método */
 .metodo-logo-inline {
     margin-bottom: 0.6rem;
 }

 .metodo-logo-inline img {
     height: 32px;
     width: auto;
 }

 .pill-tag {
     font-size: 0.8rem;
     text-transform: uppercase;
     letter-spacing: 0.14em;
     color: var(--color-dorado);
     margin-bottom: 0.8rem;
 }

 .metodo-title {
     font-size: 1.9rem;
     margin-bottom: 1rem;
 }

 .metodo-text {
     font-size: 0.95rem;
     color: var(--color-gris);
     margin-bottom: 1.5rem;
 }

 .metodo-list {
     list-style: none;
     display: grid;
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: 0.8rem 1.4rem;
     font-size: 0.9rem;
     color: #444;
 }

 .metodo-list li {
     display: flex;
     align-items: flex-start;
     gap: 0.5rem;
 }

 .metodo-list-bullet {
     margin-top: 0.22rem;
     width: 16px;
     height: 16px;
     border-radius: 999px;
     border: 1px solid rgba(151, 206, 209, 0.8);
     background: radial-gradient(circle at 20% 20%, var(--color-rosa-oscuro), var(--color-rosa));
 }

 .metodo-card {
     border-radius: var(--radius-xl);
     padding: 1.8rem;
     background: rgba(255, 255, 255, 0.92);
     box-shadow: var(--shadow-soft);
     backdrop-filter: blur(10px);
 }

 .metodo-card-header {
     font-size: 0.85rem;
     text-transform: uppercase;
     letter-spacing: 0.14em;
     color: var(--color-gris);
     margin-bottom: 0.3rem;
 }

 .metodo-card-title {
     font-size: 1.1rem;
     font-weight: 600;
     margin-bottom: 0.8rem;
 }

 .metodo-steps {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 0.75rem;
     font-size: 0.85rem;
     color: #555;
 }

 .metodo-step-label {
     font-weight: 500;
     color: var(--color-rosa-oscuro);
     margin-right: 0.35rem;
 }

 /* ------ Especialidades ------ */

 .specialties-grid {
     display: grid;
     grid-template-columns: repeat(3, minmax(0, 1fr));
     gap: 1.4rem;
 }

 .specialty-card {
     border-radius: var(--radius-xl);
     background: #ffffff;
     padding: 1.3rem;
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
     border: 1px solid rgba(250, 224, 223, 0.9);
     display: flex;
     flex-direction: column;
     gap: 0.6rem;
     transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
 }

 .specialty-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
     background: radial-gradient(circle at 0% 0%, #ffffff, #FAE0DF);
 }

 .specialty-icon {
     width: 40px;
     height: 40px;
     border-radius: 999px;
     background: radial-gradient(circle at 20% 20%, var(--color-rosa-oscuro), var(--color-dorado));
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.3rem;
     color: #fff;
     margin-bottom: 0.3rem;
 }

 .specialty-name {
     font-weight: 600;
     font-size: 0.98rem;
 }

 .specialty-text {
     font-size: 0.85rem;
     color: var(--color-gris);
 }

 /* ------ Equipo slider ------ */

 #equipo {
     background:
         radial-gradient(circle at 100% 0%, rgba(250, 224, 223, 0.7), transparent 55%),
         radial-gradient(circle at 0% 100%, rgba(151, 206, 209, 0.35), transparent 50%),
         var(--color-fondo);
 }

 .team-slider {
     max-width: 760px;
     margin: 0 auto;
     position: relative;
 }

 .team-slider-viewport {
     overflow: hidden;
     border-radius: var(--radius-xl);
     box-shadow: var(--shadow-soft);
     background: #ffffff;
 }

 .team-slider-track {
     display: flex;
     transition: transform 0.6s ease-in-out;
     will-change: transform;
 }

 .team-card {
     min-width: 100%;
     padding: 2rem 2.4rem;
     display: grid;
     grid-template-columns: 0.9fr 1.3fr;
     gap: 1.7rem;
     align-items: center;
 }

 .team-photo {
     width: 100%;
     aspect-ratio: 3 / 4;
     border-radius: 18px;
     overflow: hidden;
     background: #f3f3f3;
     border: 1px solid rgba(250, 224, 223, 0.9);
 }

 .team-photo img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .team-info-name {
     font-size: 1.3rem;
     font-weight: 600;
     margin-bottom: 0.2rem;
 }

 .team-info-role {
     font-size: 0.9rem;
     color: var(--color-rosa-oscuro);
     margin-bottom: 0.6rem;
 }

 .team-info-bio {
     font-size: 0.9rem;
     color: var(--color-gris);
     margin-bottom: 0.8rem;
 }

 .team-tags {
     display: flex;
     flex-wrap: wrap;
     gap: 0.4rem;
     font-size: 0.75rem;
 }

 .team-tag {
     padding: 0.2rem 0.6rem;
     border-radius: 999px;
     background: rgba(151, 206, 209, 0.18);
     color: #555;
 }

 .team-slider-controls {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: 1rem;
     gap: 1rem;
 }

 .team-dots {
     display: flex;
     gap: 0.4rem;
 }

 .team-dot {
     width: 10px;
     height: 10px;
     border-radius: 999px;
     border: 1px solid rgba(151, 206, 209, 0.8);
     background: transparent;
     cursor: pointer;
     transition: background var(--transition-base), transform var(--transition-base);
 }

 .team-dot.active {
     background: linear-gradient(135deg, var(--color-rosa-oscuro), var(--color-dorado));
     transform: scale(1.15);
 }

 .team-arrows {
     display: flex;
     gap: 0.6rem;
 }

 .team-arrow-btn {
     width: 34px;
     height: 34px;
     border-radius: 999px;
     border: none;
     cursor: pointer;
     background: rgba(255, 255, 255, 0.96);
     box-shadow: var(--shadow-soft);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.1rem;
     transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
 }

 .team-arrow-btn:hover {
     transform: translateY(-1px);
     box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
     background: #FAE0DF;
 }

 /* ------ Método Renace 360 (bloque 2) ------ */

 .metodo-extended {
     margin-top: 3.2rem;
     border-radius: var(--radius-xl);
     padding: 2rem;
     background-image:
         linear-gradient(120deg, rgba(250, 224, 223, 0.98), rgba(246, 245, 241, 0.9));
     background-size: cover;
     background-position: center;
     position: relative;
     color: #3a2b2f;
     overflow: hidden;
 }

 .metodo-extended::after {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.70));
     pointer-events: none;
 }

 .metodo-extended-inner {
     position: relative;
     z-index: 1;
     display: grid;
     grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
     gap: 1.8rem;
     align-items: center;
 }

 .metodo-extended-title {
     font-size: 1.4rem;
     font-weight: 600;
     margin-bottom: 0.6rem;
 }

 .metodo-extended-text {
     font-size: 0.9rem;
     margin-bottom: 0.9rem;
 }

 .metodo-extended-pill {
     display: inline-flex;
     align-items: center;
     gap: 0.4rem;
     padding: 0.2rem 0.7rem;
     border-radius: 999px;
     border: 1px solid rgba(151, 206, 209, 0.8);
     font-size: 0.75rem;
     text-transform: uppercase;
     letter-spacing: 0.12em;
     margin-bottom: 0.6rem;
 }

 .metodo-extended-columns {
     display: grid;
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: 0.6rem 1.4rem;
     font-size: 0.85rem;
 }

 .metodo-extended-badge {
     display: inline-block;
     padding: 0.25rem 0.55rem;
     border-radius: 999px;
     background: rgba(250, 224, 223, 0.9);
     font-size: 0.78rem;
     margin-bottom: 0.4rem;
 }

 /* ------ Contacto ------ */

 #contacto {
     background: #fff;
 }

 .contact-grid {
     display: grid;
     grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
     gap: 2.5rem;
 }

 .contact-card {
     border-radius: var(--radius-xl);
     padding: 2rem;
     background: #FFF8F7;
     border: 1px solid rgba(250, 224, 223, 0.9);
     box-shadow: var(--shadow-soft);
 }

 .contact-card h3 {
     font-size: 1.2rem;
     margin-bottom: 0.8rem;
 }

 .contact-row {
     margin-bottom: 0.85rem;
     font-size: 0.9rem;
 }

 .contact-label {
     font-weight: 500;
     color: var(--color-rosa-oscuro);
 }

 .contact-form {
     display: flex;
     flex-direction: column;
     gap: 0.8rem;
     margin-top: 1.2rem;
 }

 .field-group label {
     font-size: 0.82rem;
     margin-bottom: 0.25rem;
     display: block;
     color: var(--color-gris);
 }

 .field-group input,
 .field-group textarea {
     width: 100%;
     border-radius: 12px;
     border: 1px solid rgba(151, 206, 209, 0.5);
     padding: 0.7rem 0.85rem;
     font-size: 0.85rem;
     font-family: inherit;
     outline: none;
     background: #fff;
     transition: border var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
     resize: vertical;
     min-height: 44px;
 }

 .field-group input:focus,
 .field-group textarea:focus {
     border-color: var(--color-rosa-oscuro);
     box-shadow: 0 0 0 1px rgba(85, 161, 174, 0.5);
     background: #F6F5F1;
 }

 .btn-form {
     align-self: flex-start;
     margin-top: 0.4rem;
 }

 .contact-map {
     border-radius: var(--radius-xl);
     overflow: hidden;
     box-shadow: var(--shadow-soft);
     background: #f1f1f1;
     min-height: 280px;
     display: flex;
     align-items: stretch;
     justify-content: stretch;
 }

 .map-placeholder {
     padding: 1.5rem;
     font-size: 0.9rem;
     color: var(--color-gris);
 }

 .whatsapp-banner {
     margin-top: 1.1rem;
     display: inline-flex;
     align-items: center;
     gap: 0.6rem;
     padding: 0.55rem 0.9rem;
     border-radius: 999px;
     background: #e9ffe9;
     font-size: 0.84rem;
     border: 1px solid #b5e7b5;
 }

 .whatsapp-dot {
     width: 10px;
     height: 10px;
     border-radius: 999px;
     background: #25d366;
 }

 /* ------ Footer ------ */
 footer {
     background: #55A1AE;
     color: #F6F5F1;
     padding: 1.6rem 0 2rem;
 }

 .footer-inner {
     max-width: 1100px;
     margin: 0 auto;
     padding: 0 1.5rem;
     font-size: 0.8rem;
 }

 /* Contenedor principal: logo + texto en la misma línea */
 .footer-main {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 0.9rem;
     text-align: center;
     flex-wrap: wrap;
 }

 .footer-logo {
     height: 100px;
     /* más grande y visible */
     width: auto;
 }

 .footer-main-text {
     line-height: 1.4;
 }

 .footer-sub {
     margin-top: 0.35rem;
     text-align: center;
     opacity: 0.9;
 }

 footer a {
     color: #FAE0DF;
 }

 /* En pantallas pequeñas, que se vea bien centrado en columnas */
 @media (max-width: 600px) {
     .footer-main {
         flex-direction: column;
     }

     .footer-logo {
         height: 44px;
     }
 }


 /* ------ Animaciones de aparición (scroll) ------ */

 .reveal {
     opacity: 0;
     transform: translateY(20px);
     transition: opacity 0.7s ease-out, transform 0.7s ease-out;
 }

 .reveal.visible {
     opacity: 1;
     transform: translateY(0);
 }

 /* ------ Responsivo ------ */

 @media (max-width: 960px) {

     .hero,
     .metodo-grid,
     .contact-grid,
     .metodo-extended-inner,
     .team-card {
         grid-template-columns: minmax(0, 1fr);
     }

     .hero {
         gap: 2.4rem;
     }

     .team-card {
         padding: 1.8rem 1.6rem;
     }

     section {
         padding: 4rem 0;
     }

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

 @media (max-width: 720px) {
     nav ul {
         display: none;
     }

     .logo-img {
         height: 44px;
     }

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

     .hero-clinic-photo {
         height: 260px;
     }

     .metodo-list {
         grid-template-columns: minmax(0, 1fr);
     }

     .metodo-extended-inner {
         gap: 1.1rem;
     }
 }

 @media (max-width: 520px) {
     .specialties-grid {
         grid-template-columns: minmax(0, 1fr);
     }

     .team-card {
         padding: 1.6rem 1.2rem;
     }

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