/* styles.css - LUXURY EDITION CON IMÁGENES PROTAGONISTAS */

:root {
    --black: #000000;
    --gold: #C9A961;
    --gold-light: #E8D7AE;
    --gold-dark: #9F7F3A;
    --gray-dark: #0F0F0F;
    --gray-medium: #1A1A1A;
    --gray-light: #2A2A2A;
    --white: #FFFFFF;
    --cream: #F5F1E8;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--black);
    color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* NAVBAR GLASSMORPHISM */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(201, 169, 97, 0.15);
    padding: 1rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.logo-are {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(201, 169, 97, 0.5);
}

.logo-business {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 6px;
    color: var(--cream);
}

.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-link {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

/* HERO CON PARALLAX - MÁS VISIBLE */
.hero {
    height: 100vh;
    min-height: 800px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: url("./images/1310e3c2e30b.jpg") center/cover no-repeat;
    background-attachment: fixed;
    will-change: transform;
    filter: brightness(0.8) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(15,15,15,0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 2rem;
    color: var(--cream);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.gold-gradient {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(245, 241, 232, 0.95);
    max-width: 900px;
    margin: 0 auto 3rem;
    font-weight: 300;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
}

.hero-subtitle strong {
    color: var(--gold);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 5rem;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 1.3rem 2.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 169, 97, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    padding: 1.3rem 2.8rem;
    border: 2px solid var(--gold);
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 3px;
    font-weight: 600;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(15px); opacity: 0.5; }
}

/* STATS BAR */
.stats-bar {
    background: var(--gray-dark);
    padding: 4rem 0;
    border-top: 1px solid rgba(201, 169, 97, 0.15);
    border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--cream);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

/* CONTAINER */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* SECTION LABELS & TITLES */
.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.section-label.center {
    display: block;
    text-align: center;
}

.section-label.light {
    color: var(--cream);
}

.section-title {
    font-size: 3.8rem;
    margin-bottom: 4rem;
    color: var(--cream);
}

.section-title.center {
    text-align: center;
}

.section-title.light {
    color: var(--cream);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(245, 241, 232, 0.7);
    max-width: 800px;
    margin: -2rem auto 4rem;
    font-weight: 300;
}

/* INTRO SECTION - IMAGEN MÁS GRANDE Y PROMINENTE */
.intro-section {
    padding: 10rem 0;
    background: var(--gray-dark);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.intro-text {
    max-width: 600px;
}

.intro-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(245, 241, 232, 0.85);
    margin-bottom: 2rem;
    font-weight: 300;
}

.intro-description strong {
    color: var(--gold);
    font-weight: 600;
}

.intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 700px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 0.6s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05), transparent 60%);
    border: 3px solid rgba(201, 169, 97, 0.3);
    border-radius: 20px;
    transition: border-color 0.3s ease;
}

.intro-image:hover .image-overlay {
    border-color: rgba(201, 169, 97, 0.6);
}

/* AREAS SECTION - IMÁGENES MÁS GRANDES Y DESTACADAS */
.areas-section {
    padding: 10rem 0;
    background: var(--black);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.area-card {
    background: var(--gray-medium);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
    border: 2px solid rgba(201, 169, 97, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.area-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 0 0 40px rgba(201, 169, 97, 0.2);
    border-color: rgba(201, 169, 97, 0.4);
}

.area-image {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.area-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.3) 70%, var(--gray-medium));
    z-index: 1;
}

.area-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.area-card:hover .area-image::after {
    opacity: 1;
}

.area-content {
    padding: 2.5rem;
}

.area-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -65px auto 2rem;
    position: relative;
    z-index: 3;
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.4);
    border: 3px solid var(--gray-medium);
}

.area-icon i {
    font-size: 2.2rem;
    color: var(--black);
}

.area-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--cream);
    text-align: center;
}

.area-content > p {
    text-align: center;
    color: rgba(245, 241, 232, 0.7);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.area-features {
    list-style: none;
    margin-bottom: 2rem;
}

.area-features li {
    padding: 0.6rem 0;
    color: rgba(245, 241, 232, 0.8);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.area-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.area-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    justify-content: center;
}

.area-link:hover {
    gap: 1.2rem;
}

/* SPECIALTIES SECTION - IMAGEN DE FONDO MÁS VISIBLE */
.specialties-section {
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

.specialties-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(0,0,0,0.7), rgba(15,15,15,0.8)),
        url("./images/ed6a6cc42bfc.jpg") center/cover fixed;
    filter: brightness(0.7);
}

.specialties-section .container {
    position: relative;
    z-index: 2;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.specialty-item {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(15px);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(201, 169, 97, 0.2);
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
    color: inherit;
}

.specialty-item:hover {
    background: rgba(201, 169, 97, 0.15);
    border-color: var(--gold);
    transform: translateY(-10px);
    cursor: pointer;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.specialty-item i {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 10px rgba(201, 169, 97, 0.4));
}

.specialty-item h4 {
    font-size: 1.3rem;
    color: var(--cream);
}

.specialties-cta {
    text-align: center;
    margin-top: 4rem;
}

.btn-outline-light {
    background: transparent;
    color: var(--cream);
    padding: 1.2rem 2.5rem;
    border: 2px solid var(--cream);
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--cream);
    color: var(--black);
    transform: translateY(-3px);
}

/* FINAL CTA - IMAGEN DE FONDO MÁS PROMINENTE */
.final-cta {
    padding: 12rem 0;
    background:
        linear-gradient(135deg, rgba(0,0,0,0.65), rgba(15,15,15,0.7)),
        url("./images/a1f7bc110169.jpg") center/cover fixed;
    text-align: center;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 20%, rgba(0,0,0,0.4) 100%);
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    color: var(--cream);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.cta-text {
    font-size: 1.3rem;
    color: rgba(245, 241, 232, 0.95);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 300;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
}

.btn-gold.large {
    padding: 1.5rem 3.5rem;
    font-size: 0.9rem;
}

/* FOOTER */
.footer {
    background: var(--black);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(201, 169, 97, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    color: rgba(245, 241, 232, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.footer-links h5 {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(245, 241, 232, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact h5 {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-contact p {
    color: rgba(245, 241, 232, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.footer-contact i {
    color: var(--gold);
    width: 20px;
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(201, 169, 97, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(245, 241, 232, 0.5);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(245, 241, 232, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 2rem;
    }

    .container {
        padding: 0 2rem;
    }

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

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .intro-image {
        height: 500px;
    }

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

    .area-image {
        height: 300px;
    }

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

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

    .cta-title {
        font-size: 3rem;
    }
}

/* RIPPLE EFFECT */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

.btn-gold, .btn-outline, .nav-cta {
    position: relative;
    overflow: hidden;
}

.page-hero {
    height: 70vh;
    min-height: 600px;
}

.page-hero .hero-title {
    font-size: 4.5rem;
}

.page-hero .hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}

.timeline-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.timeline-number {
    font-size: 4rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.timeline-content h3 {
    font-size: 2rem;
    color: var(--cream);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.timeline-content p {
    font-size: 1.1rem;
    color: rgba(245, 241, 232, 0.8);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .timeline-number {
        font-size: 3rem;
    }

    .timeline-content h3 {
        font-size: 1.5rem;
    }
}

/* TEAM SECTION - ACTUALIZADO PARA 8 PERSONAS */
.team-section {
    padding: 10rem 0;
    background: var(--black);
}

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

.team-member {
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
    background: var(--gray-light);
    transition: all 0.3s ease;
}

.team-member:hover .team-photo {
    border-color: var(--gold-light);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.5);
    transform: scale(1.05);
}

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

.team-name {
    font-size: 1.3rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--cream);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-role {
    font-size: 0.9rem;
    color: rgba(245, 241, 232, 0.7);
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Responsive para team */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .team-photo {
        width: 150px;
        height: 150px;
    }
}

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

/* PARTNERS SECTION */
.partners-section {
    padding: 10rem 0;
    background: var(--black);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-card {
    background: linear-gradient(135deg, var(--gray-medium) 0%, var(--charcoal) 100%);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid rgba(201, 169, 97, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, var(--gold), transparent, var(--gold));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 169, 97, 0.2);
}

.partner-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.5);
}

.partner-logo i {
    font-size: 2.5rem;
    color: var(--black);
}

.partner-name {
    font-size: 1.6rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--cream);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.partner-sector {
    font-size: 0.95rem;
    color: var(--gold);
    font-weight: 400;
    letter-spacing: 1px;
}

/* Responsive para partners */
@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
