@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* =========================================
   WOY ODONTOLOGIA - CSS COMPLETO
   ========================================= */

:root {
    --primary: #541662;
    --primary-light: #f3e8f7;
    --primary-dark: #3d1049;
    --accent: #8e44ad;
    --secondary: #fdfbff;
    --text: #1a1a2e;
    --text-muted: #6b7280;
    --white: #ffffff;
    --border: rgba(84, 22, 98, 0.08);
    --shadow: 0 10px 30px rgba(84, 22, 98, 0.08);
    --shadow-lg: 0 20px 60px rgba(84, 22, 98, 0.15);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--white);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    background: var(--white);
    padding: 1rem 0;
    z-index: 2000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    padding: 0.6rem 0;
    border-bottom-color: var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img { height: 42px; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--primary); }

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 3000;
    padding: 5px;
}

.menu-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(84, 22, 98, 0.25);
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(84, 22, 98, 0.35);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* =========================================
   REVEAL ANIMATIONS
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    padding: 11rem 0 7rem;
    background: linear-gradient(135deg, #fdfbff 0%, #f3e8f7 40%, #e8d5f5 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(142, 68, 173, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -15px;
    background: linear-gradient(135deg, rgba(84, 22, 98, 0.12), rgba(142, 68, 173, 0.06));
    border-radius: 55px;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    object-position: center top;
    border-radius: 40px;
    box-shadow: 0 30px 80px rgba(84, 22, 98, 0.2);
    display: block;
    position: relative;
    z-index: 1;
}



/* =========================================
   STATS SECTION
   ========================================= */
.stats-section {
    padding: 3rem 0 5rem;
    background: var(--secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border);
}

.stat-item {
    padding: 2.5rem 2rem;
    text-align: center;
    border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about {
    padding: 7rem 0;
    background: var(--white);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-image {
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, var(--primary-light), transparent);
    border-radius: 0 0 40px 0;
    z-index: 0;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center top;
    border-radius: 40px;
    box-shadow: 0 30px 80px rgba(84, 22, 98, 0.15);
    position: relative;
    z-index: 1;
    display: block;
}

.about-content {
    padding-left: 1rem;
}

.about-content .label {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.about-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.check-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 1.2rem;
    background: var(--secondary);
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.check-item:hover {
    background: var(--primary-light);
    border-color: rgba(84, 22, 98, 0.15);
}

.check-item i {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services {
    padding: 7rem 0;
    background: var(--secondary);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 28px;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.service-card i {
    font-size: 2rem;
    color: var(--primary);
    background: var(--primary-light);
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.8rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.6;
}

/* =========================================
   INSTAGRAM / GALLERY SECTION
   ========================================= */
.instagram-section {
    padding: 7rem 0;
    background: var(--white);
}

/* Header estilo perfil Instagram */
.insta-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

.insta-profile {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.insta-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    flex-shrink: 0;
}

.insta-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: var(--white);
    padding: 4px;
    box-sizing: border-box;
}

.insta-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.insta-handle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.insta-tooth-icon {
    color: var(--primary);
    font-size: 0.9rem;
    background: var(--primary-light);
    padding: 4px 6px;
    border-radius: 8px;
}

.insta-info h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.insta-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 0.2rem;
}

/* Botão Seguir estilo Instagram */
.insta-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    color: var(--white);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(131, 58, 180, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
}

.insta-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(131, 58, 180, 0.4);
    opacity: 0.92;
}

.insta-follow-btn .fab.fa-instagram { font-size: 1.2rem; }

/* Swiper / Posts */
.swiper { overflow: hidden; }
.swiper-slide {
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 18px;
    position: relative;
    cursor: pointer;
}

.insta-post-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.insta-post-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.insta-post-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.85), rgba(253, 29, 29, 0.7));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.35s ease;
    color: white;
}

.insta-post-overlay i { font-size: 2rem; }
.insta-post-overlay span { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.03em; }

.insta-post-link:hover .insta-post-overlay { opacity: 1; }
.insta-post-link:hover img { transform: scale(1.06); }

.swiper-pagination-bullet { background: var(--primary); opacity: 0.4; }
.swiper-pagination-bullet-active { background: var(--primary); opacity: 1; }



/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials {
    padding: 7rem 0;
    background: var(--secondary);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.google-integrated-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.google-integrated-rating .fab.fa-google { color: #ea4335; }

.mini-stars { display: flex; gap: 2px; }
.mini-stars i { color: #fbbf24; font-size: 0.8rem; }

.testimonials-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.testimonials-header p { color: var(--text-muted); }

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

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.testimonial-text {
    color: var(--text);
    font-size: 0.97rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 1rem; }

.author-info h4 { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.author-info span { font-size: 0.82rem; color: var(--text-muted); }

/* =========================================
   UNIDADES SECTION
   ========================================= */
.unidades {
    padding: 7rem 0;
    background: var(--white);
}

.unidades-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.unidade-card {
    background: var(--white);
    border-radius: 28px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.unidade-card:hover { box-shadow: var(--shadow-lg); }

.unidade-info {
    padding: 2rem;
}

.unidade-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.unidade-info p {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.unidade-info p i { color: var(--primary); flex-shrink: 0; }

/* =========================================
   FOOTER
   ========================================= */
footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 5rem 0 2rem;
}

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

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-col p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: rgba(255,255,255,0.7);
    font-size: 1.3rem;
    transition: color 0.2s;
    text-decoration: none;
}

.social-links a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* =========================================
   FLOATING WHATSAPP
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    background: #25d366;
    color: white;
    width: 62px; height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center; justify-content: center;
    font-size: 2rem;
    z-index: 1500;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
    transition: var(--transition);
}

.whatsapp-float:hover { transform: scale(1.1); }

.whatsapp-menu {
    position: absolute;
    bottom: 80px; right: 0;
    width: 290px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    display: none;
    flex-direction: column;
    gap: 0.8rem;
    border: 1px solid var(--border);
}

.whatsapp-menu h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.whatsapp-menu.active { display: flex; }

.whatsapp-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text);
    padding: 0.9rem 1rem;
    border-radius: 14px;
    background: var(--secondary);
    transition: var(--transition);
}

.whatsapp-option:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.whatsapp-option .fab.fa-whatsapp {
    color: #25d366;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.whatsapp-option-info h5 { font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
.whatsapp-option-info p { font-size: 0.78rem; color: var(--text-muted); }

/* =========================================
   MODALS
   ========================================= */
.modal, .unit-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(10, 5, 20, 0.6);
    backdrop-filter: blur(8px);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active, .unit-modal.active { display: flex; }

.modal-content {
    background: var(--white);
    border-radius: 36px;
    max-width: 860px; width: 100%;
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.unit-modal-content {
    background: var(--white);
    border-radius: 36px;
    max-width: 480px; width: 100%;
    padding: 3rem;
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.unit-modal-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 18px; right: 24px;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-muted);
    line-height: 1;
    transition: color 0.2s;
}

.close-modal:hover { color: var(--primary); }

/* Modal Grid (Service Modal) */
.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 36px 0 0 36px;
    min-height: 350px;
    max-height: 520px;
}

.modal-info {
    padding: 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-info h2 {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.modal-benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.35rem 0;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--border);
}

.modal-benefits-list li:last-child { border-bottom: none; }
.modal-benefits-list li .fas.fa-check { color: var(--primary); }

.modal-selection-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.modal-selection-header .fab.fa-whatsapp { color: #25d366; font-size: 1.2rem; }

.modal-cta-container { margin-top: 1rem; }

/* Unit Pills */
.unit-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.unit-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 1.2rem 1rem;
    background: var(--primary-light);
    border-radius: 18px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.unit-pill:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.unit-pill i { font-size: 1.2rem; }

/* =========================================
   MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 991px) {
    .menu-toggle { display: flex; }
    .header-cta { display: none; }

    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 100%; height: 100dvh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 2500;
    }

    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.8rem; font-weight: 800; }

    .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-grid { grid-template-columns: 1fr; padding: 0 1.5rem; }
}

@media (max-width: 768px) {
    /* Hero Mobile */
    .hero {
        padding: 0;
        margin-top: 66px;
        background: var(--white);
    }
    .hero::before { display: none; }
    .hero-grid { display: flex; flex-direction: column; gap: 0; min-height: unset; }
    .hero-content { order: 2; padding: 2.5rem 1.5rem 4rem; text-align: center; }
    .hero-content p { max-width: 100%; }
    .hero-content h1 { font-size: 2.3rem; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; margin: 0 !important; }
    .hero-image {
        order: 1;
        height: 45vh;
        overflow: hidden;
    }
    .hero-image::before { display: none; }
    .hero-image img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center top;
        border-radius: 0 0 36px 36px;
        box-shadow: none;
    }


    /* Stats mobile */
    .stats-grid { grid-template-columns: 1fr; border-radius: 20px; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
    .stat-item:last-child { border-bottom: none; }

    /* Services mobile */
    .services-grid { grid-template-columns: 1fr; }

    /* Unidades mobile */
    .unidades-grid { grid-template-columns: 1fr; }

    /* Modal mobile */
    .modal-grid { grid-template-columns: 1fr; }
    .modal-image img { border-radius: 36px 36px 0 0; min-height: 220px; }
    .modal-info { padding: 2rem 1.5rem; }
    .unit-pills { grid-template-columns: 1fr; }

    /* Instagram mobile */
    .insta-header { flex-direction: column; align-items: flex-start; text-align: left; gap: 1.5rem; }
    .insta-profile { flex-direction: row; align-items: center; gap: 1rem; text-align: left; }
    .insta-info h2 { font-size: 1.6rem; }
    .insta-follow-btn { width: 100%; justify-content: center; margin-top: 0.5rem; }

    /* Footer mobile */
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.2rem; }
    section { padding: 4rem 0; }
    .hero-content h1 { font-size: 2rem; }
    .section-header h2 { font-size: 2rem; }
    .about-content h2 { font-size: 2rem; }
    .testimonials-header h2 { font-size: 2rem; }
}
