:root {
    --bg-deep: #F5F5F7;
    --bg-card: #FFFFFF;
    --bg-nav: rgba(245, 245, 247, 0.85);
    --accent: #FF3B30;
    --accent-glow: rgba(255, 59, 48, 0.15);
    --text-main: #1D1D1F;
    --text-dim: #515154;
    --text-muted: #86868B;
    --border: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(255, 59, 48, 0.3);
    --glass: rgba(0, 0, 0, 0.02);
    --glass-border: rgba(0, 0, 0, 0.05);
    --nav-height: 80px;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1,
h2,
h3,
.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: #cccccc;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* --- Background Accents --- */
.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    z-index: -1;
    filter: blur(100px);
    pointer-events: none;
    opacity: 0.5;
}

/* --- Navigation --- */
nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    height: var(--nav-height);
    background: var(--bg-nav);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 40px;
    transition: all 0.4s var(--transition-smooth);
}

nav.scrolled {
    top: 0;
    width: 100%;
    border-radius: 0 0 20px 20px;
    border-top: none;
    border-left: none;
    border-right: none;
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--transition-smooth);
}

.logo:hover .logo-icon {
    transform: scale(1.05) rotate(5deg);
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.logo-text {
    font-size: 1.4rem;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s var(--transition-smooth);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-btn {
    background: var(--accent);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    font-family: 'Outfit', sans-serif;
}

.nav-btn:hover {
    box-shadow: 0 0 25px var(--accent-glow);
    transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 20px;
    background-color: #000000;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center;
}

/* --- Menu Toggle Button --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: all 0.3s var(--transition-smooth);
    transform-origin: left center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(-2px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(2px);
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* --- Scroll to Top --- */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--transition-smooth);
    z-index: 999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
    transform: translateY(-5px);
}

.scroll-top-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--text-main);
    transition: fill 0.3s;
}

.scroll-top-btn:hover svg {
    fill: var(--accent);
}

.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1.5s ease-in-out;
}

.v-hidden {
    opacity: 0 !important;
}

.v-visible {
    opacity: 0.55 !important;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.1) 0%, #000000 100%);
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-img {
    height: 190px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 35px rgba(255, 59, 48, 0.4));
    animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: #4ade80;
    border-radius: 50%;
    position: relative;
}

.hero-badge .dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: #4ade80;
    border-radius: 50%;
    opacity: 0.4;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 24px;
    font-weight: 800;
    color: #ffffff;
}

.hero h1 span {
    display: block;
    color: var(--accent);
    text-shadow: 0 0 40px var(--accent-glow);
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero .btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* --- Scroll Down Indicator --- */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    z-index: 10;
    transition: all 0.3s var(--transition-smooth);
}

.scroll-down:hover {
    transform: translate(-50%, -4px);
}

.scroll-down:hover .mouse {
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.scroll-down:hover .scroll-text {
    color: #ffffff;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    position: relative;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s cubic-bezier(0.15, 0.41, 0.69, 0.94) infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 0;
        top: 8px;
    }

    30% {
        opacity: 1;
    }

    90% {
        opacity: 0;
        top: 22px;
    }

    100% {
        opacity: 0;
        top: 8px;
    }
}

.scroll-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: color 0.3s;
}

.btn-group {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn {
    padding: 18px 36px;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 59, 48, 0.2);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 59, 48, 0.4);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-main);
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.btn-secondary:hover {
    background: var(--bg-deep);
    border-color: var(--border-hover);
    color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.hero-stats {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    gap: 60px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(to bottom, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 600;
}

/* --- Sections --- */
.section {
    padding: 120px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-label {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-title span {
    color: var(--accent);
}

.section-subtitle {
    color: var(--text-dim);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
}

/* --- Cards Grid --- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, var(--accent-glow), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.card:hover {
    border-color: var(--border-hover);
    transform: translateY(-10px);
}

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

.card-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 59, 48, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.card-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--accent);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.card p {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* --- Frequency Section --- */
.info-section {
    background: var(--bg-card);
    padding: 120px 20px;
    position: relative;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.info-list {
    list-style: none;
    margin-top: 30px;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-dim);
}

.info-list li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 900;
}

.info-visual {
    background: var(--bg-deep);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    position: relative;
}

.frequency-display {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--accent);
    font-family: 'Outfit', sans-serif;
    letter-spacing: -2px;
    text-shadow: 0 0 30px var(--accent-glow);
}

.frequency-label {
    color: var(--text-muted);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
}

/* --- Contact --- */
.contact {
    padding: 120px 20px;
    background-color: #050505;
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center;
}

.contact::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 59, 48, 0.12) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    z-index: 1;
    filter: blur(80px);
    pointer-events: none;
}

.contact .contact-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.contact .section-title {
    color: #ffffff;
}

.contact .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.contact-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.contact-item h4 {
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    font-size: 1.1rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 59, 48, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--accent);
}

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 60px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px 20px;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

/* --- Footer --- */
footer {
    padding: 80px 20px;
    text-align: center;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: auto;
}

.footer-friends {
    max-width: 900px;
    margin: 0 auto 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.friends-title {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
}

.friends-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
    flex-wrap: wrap;
}

.friends-logos a {
    display: block;
    transition: transform 0.3s var(--transition-smooth);
}

.friends-logos a:hover {
    transform: scale(1.08);
}

.friends-logos img {
    height: 80px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5) invert(1);
    /* Invert so they display nicely on black */
    transition: all 0.3s var(--transition-smooth);
}

.friends-logos a:hover img {
    filter: grayscale(0%) opacity(1) invert(0);
}

.footer-copy {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* --- Responsive --- */
@media (max-width: 968px) {

    .info-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero-logo-img {
        height: 130px;
    }

    .hero-stats {
        gap: 30px;
        flex-wrap: wrap;
    }

    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid var(--border);
        padding: 120px 40px 40px;
        gap: 24px;
        transition: right 0.4s var(--transition-smooth);
        z-index: 1050;
        list-style: none;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }
}

/* --- Nosotros Customizations --- */
#nosotros {
    background-image: linear-gradient(to bottom, rgba(245, 245, 247, 0.85), rgba(245, 245, 247, 0.85)), url('../images/back_2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
}

#nosotros .cards-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 968px) {
    #nosotros .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 640px) {
    #nosotros .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Drawer Style --- */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--transition-smooth);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.logo-drawer {
    position: fixed;
    top: 0;
    right: -550px;
    width: 100%;
    max-width: 520px;
    height: 100vh;
    background: #050505;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 2001;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 40px;
    overflow-y: auto;
}

.logo-drawer.active {
    right: 0;
}

.drawer-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
    z-index: 10;
}

.drawer-close:hover {
    color: var(--accent);
}

.drawer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.drawer-logo-wrapper {
    margin-top: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.drawer-logo {
    height: 180px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 35px rgba(255, 59, 48, 0.4));
    animation: floatLogo 6s ease-in-out infinite;
}

.drawer-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-align: center;
    color: #ffffff;
}

.drawer-body {
    text-align: left;
}

.drawer-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.drawer-body p strong {
    color: var(--accent);
    font-weight: 600;
}

@media (max-width: 576px) {
    .logo-drawer {
        padding: 30px 20px;
    }

    .drawer-title {
        font-size: 1.8rem;
    }
}

/* --- Lightbox Modal --- */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition-smooth);
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 50px rgba(255, 59, 48, 0.6));
    transform: scale(0.9);
    transition: transform 0.4s var(--transition-smooth);
}

.lightbox-modal.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 3.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--accent);
}