/* =======================================================
   SERVICIOS PLANIFICADOS S.A.S. - TOCAIMA
   Identidad Exclusiva: Ámbar Solar & Pizarra Carbón
   ======================================================= */

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

:root {
    /* Paleta Tocaima Solar */
    --primary: #EA580C;          /* Ámbar Solar / Cobre */
    --primary-dark: #C2410C;     /* Cobre Oscuro */
    --primary-light: #FFF7ED;    /* Fondo Crema Solar */
    --accent: #F59E0B;           /* Oro Cálido */
    --accent-mint: #10B981;      /* Menta Sostenible */
    --dark: #0F172A;             /* Pizarra Profunda */
    --dark-surface: #1E293B;     /* Grafito */
    --dark-card: #1E293B;
    --text: #334155;
    --text-muted: #64748B;
    --light: #F8FAFC;
    --white: #FFFFFF;
    --border: #E2E8F0;
    --border-warm: rgba(234, 88, 12, 0.2);
    
    /* Sombras & Efectos */
    --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 10px 25px rgba(234, 88, 12, 0.08);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);
    --shadow-solar: 0 10px 30px rgba(234, 88, 12, 0.25);
    
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 36px;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text);
    background-color: var(--light);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* === LOADER === */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader__spinner {
    width: 55px;
    height: 55px;
    border: 4px solid rgba(245, 158, 11, 0.2);
    border-top: 4px solid var(--primary);
    border-right: 4px solid var(--accent);
    border-radius: 50%;
    animation: spin 0.85s linear infinite;
    box-shadow: var(--shadow-solar);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* === NAVBAR (FLOATING PILL DESIGN) === */
.navbar-wrapper {
    position: fixed;
    top: 1.2rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    padding: 0 1.5rem;
    transition: var(--transition);
}

.navbar {
    width: 100%;
    max-width: 1180px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(234, 88, 12, 0.15);
    border-radius: var(--radius-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.12);
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar__logo img {
    height: 44px;
    object-fit: contain;
    transition: var(--transition);
}

.navbar__logo:hover img {
    transform: scale(1.04);
}

.navbar__menu {
    display: flex;
    list-style: none;
    gap: 1.6rem;
    align-items: center;
}

.navbar__link {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.92rem;
    position: relative;
    padding: 0.4rem 0.6rem;
    border-radius: var(--radius-sm);
}

.navbar__link:hover,
.navbar__link.active {
    color: var(--primary);
    background: var(--primary-light);
}

.navbar__dropdown {
    position: relative;
}

.navbar__dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 0.6rem 0;
    border: 1px solid var(--border);
    z-index: 100;
    animation: fadeIn 0.3s ease;
}

.navbar__dropdown:hover .navbar__dropdown-content {
    display: block;
}

.navbar__dropdown-content a {
    display: block;
    padding: 0.7rem 1.2rem;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.navbar__dropdown-content a:hover {
    background: var(--primary-light);
    color: var(--primary);
    padding-left: 1.5rem;
}

.navbar__hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.navbar__hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* === HERO SECTION (SPLIT ASYMMETRICAL MODERN) === */
.hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 10% 20%, #1E293B 0%, #0F172A 90%);
    color: var(--white);
    padding: 8rem 5% 5rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero__container {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 3.5rem;
    max-width: 1180px;
    width: 100%;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}

.hero__title {
    font-size: 3.6rem;
    line-height: 1.12;
    margin-bottom: 1.4rem;
    color: var(--white);
    letter-spacing: -0.5px;
}

.hero__title span {
    background: linear-gradient(135deg, #F59E0B 0%, #EA580C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: #CBD5E1;
    margin-bottom: 2.2rem;
    font-weight: 300;
    line-height: 1.75;
}

.hero__actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.hero__btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #EA580C 0%, #C2410C 100%);
    color: var(--white);
    padding: 1rem 2.2rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-solar);
    transition: var(--transition);
}

.hero__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(234, 88, 12, 0.4);
    color: var(--white);
}

.hero__btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.hero__btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: var(--white);
}

/* Hero Right: Showcase Card */
.hero__card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(245, 158, 11, 0.25);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    position: relative;
}

.hero__card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.hero__card-icon {
    font-size: 2rem;
    width: 55px;
    height: 55px;
    background: rgba(234, 88, 12, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.hero__card-header h3 {
    color: var(--white);
    font-size: 1.3rem;
}

.hero__card-header p {
    color: #94A3B8;
    font-size: 0.88rem;
}

.hero__stats-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero__stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero__stat-label {
    color: #CBD5E1;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero__stat-val {
    color: var(--accent);
    font-weight: 700;
    font-size: 1rem;
}

/* === SECTIONS GENERAL === */
.section {
    padding: 6rem 5%;
}

.section__header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 3.8rem;
}

.section__title {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.section__subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.section__divider {
    width: 65px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin: 1.2rem auto 0;
    border-radius: 4px;
}

/* === BENTO GRID (NOSOTROS) === */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1180px;
    margin: 0 auto;
}

.bento-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bento-card--large {
    grid-column: span 2;
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-warm);
}

.bento-card__badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-xl);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bento-card__icon {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

.bento-card h3 {
    font-size: 1.45rem;
    color: var(--dark);
    margin-bottom: 0.9rem;
}

.bento-card p {
    color: var(--text);
    font-size: 0.98rem;
    line-height: 1.7;
}

/* === EXPANSION Y MANTENIMIENTO === */
.gallery-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.2rem;
    max-width: 1180px;
    margin: 0 auto;
}

.gallery-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.gallery-card__img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-card:hover .gallery-card__img {
    transform: scale(1.05);
}

.gallery-card__info {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gallery-card__title {
    font-size: 1.35rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.gallery-card__count {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-xl);
    margin-top: 0.5rem;
    width: fit-content;
}

.gallery-card__arrow {
    padding: 1rem 1.8rem;
    background: var(--light);
    color: var(--primary);
    font-weight: 700;
    text-align: right;
    border-top: 1px solid var(--border);
    transition: var(--transition);
}

.gallery-card:hover .gallery-card__arrow {
    background: var(--primary);
    color: var(--white);
    padding-right: 2.2rem;
}

/* Detail Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1180px;
    margin: 2rem auto;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    position: relative;
    height: 200px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* === MARCO REGULATORIO === */
.norm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1180px;
    margin: 0 auto;
}

.norm-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.8rem;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

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

.norm-card__icon img {
    max-height: 115px;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.06));
    transition: var(--transition);
}

.norm-card:hover .norm-card__icon img {
    transform: scale(1.06);
}

.norm-card__title {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.norm-card__desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* === ENTES DE CONTROL === */
.control-grid {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.control-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    min-width: 240px;
}

.control-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.control-card img {
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.control-card p {
    font-weight: 700;
    color: var(--dark);
    font-size: 1rem;
}

/* === CONTACTO & PQRS === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3.5rem;
    max-width: 1180px;
    margin: 0 auto;
}

.contact-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.contact-info__item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-info__icon {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info__text h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.contact-info__text p,
.contact-info__text a {
    color: var(--text);
    font-size: 0.95rem;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 1.4rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
    background: #FBFCFD;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.12);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    padding: 1.1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--shadow-solar);
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(234, 88, 12, 0.4);
}

/* === FOOTER === */
.footer {
    background: var(--dark);
    color: #94A3B8;
    padding: 5rem 5% 2rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3.5rem;
    max-width: 1180px;
    margin: 0 auto 3.5rem;
}

.footer__brand img {
    height: 55px;
    border-radius: var(--radius-sm);
    background: var(--white);
    padding: 4px;
}

.footer__brand h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-top: 1rem;
}

.footer__title {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--accent);
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.75rem;
}

.footer__links a {
    color: #94A3B8;
    font-size: 0.92rem;
}

.footer__links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.88rem;
    color: #64748B;
}

/* === LIGHTBOX & MODALS === */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.lightbox.active {
    display: flex;
}

.lightbox__img {
    max-width: 85%;
    max-height: 80vh;
    border-radius: var(--radius-md);
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox__close { top: 2rem; right: 2rem; }
.lightbox__prev { left: 2rem; }
.lightbox__next { right: 2rem; }

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
    background: var(--primary);
}

.lightbox__caption {
    position: absolute;
    bottom: 2rem;
    color: var(--white);
    font-size: 1rem;
    background: rgba(0,0,0,0.6);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-xl);
}

/* PDF Modal */
.pdf-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.pdf-modal.active {
    display: flex;
}

.pdf-modal__content {
    background: var(--white);
    width: 90%;
    max-width: 900px;
    height: 85vh;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pdf-modal__header {
    padding: 1.2rem 1.8rem;
    background: var(--primary);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pdf-modal__header h3 {
    color: var(--white);
    font-size: 1.2rem;
}

.pdf-modal__close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
}

.pdf-modal__content iframe {
    flex: 1;
    border: none;
    width: 100%;
    height: 100%;
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 900;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* Toast */
.toast-container {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toast {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    color: var(--white);
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    animation: fadeIn 0.3s ease;
}

.toast--success { background: #10B981; }
.toast--error { background: #EF4444; }
.toast--info { background: #3B82F6; }

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .hero__container { grid-template-columns: 1fr; text-align: center; }
    .hero__actions { justify-content: center; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-card--large { grid-column: span 1; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .navbar__menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: calc(100% - 3rem);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        transition: 0.3s;
    }
    .navbar__menu.active { left: 1.5rem; }
    .navbar__hamburger { display: flex; }
    .hero__title { font-size: 2.5rem; }
    .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}

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