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

/* Variables CSS - Premium Tech Theme */
:root {
    --bg-dark: #ffffff;
    --bg-card: rgba(248, 250, 252, 0.8);
    --bg-card-hover: rgba(241, 245, 249, 1);
    --primary: #dc2626;
    --primary-dark: #b91c1c;
    --secondary: #64748b;
    --accent: #ef4444;
    --text-main: #0f172a;
    --text-muted: #334155;
    --text-dark: #0f172a;
    --gradient-main: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    --gradient-surface: linear-gradient(180deg, rgba(30, 41, 59, 0.3) 0%, rgba(15, 23, 42, 0.3) 100%);
    --glass-border: 1px solid rgba(0, 0, 0, 0.1);
    --glass-highlight: 1px solid rgba(0, 0, 0, 0.15);
    --glass-blur: blur(12px);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    --glow-subtle: 0 0 15px rgba(220, 38, 38, 0.15);
    --container-width: 1200px;
    --header-height: 80px;
    --radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(220, 38, 38, 0.03), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(239, 68, 68, 0.03), transparent 25%);
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
}

p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-main);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo i {
    color: var(--primary);
    font-size: 1.5rem;
}
.logo-img {
    height: 50px;
    width: auto;
}


.text-container {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.main-title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

.subtitle {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 320px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 6rem 2rem 2rem;
    flex-direction: column;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.nav-menu.active {
    transform: translateX(0);
}

.nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
}

.nav-menu li {
    width: 100%;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-main);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

.nav-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-menu.active::before {
    opacity: 1;
    pointer-events: auto;
}

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    animation: pulse 2s infinite;
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-float.hidden {
    opacity: 0;
    transform: translateY(100px);
    pointer-events: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(0);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background: #20ba5a;
}

.whatsapp-float.hidden:hover {
    transform: scale(1.1) translateY(100px);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
    transition: transform 0.3s ease;
    position: relative;
    width: 30px;
    height: 30px;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

.menu-toggle i {
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: block;
}

.menu-toggle.active i.fa-bars {
    transform: rotate(90deg);
    opacity: 0;
}

.menu-toggle.active i.fa-times {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    display: block !important;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
    overflow: hidden;
    background: var(--bg-dark);
    background-image: url('assets/images/Placa2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.05) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

@keyframes gridMove {
    0% {
        transform: perspective(500px) rotateX(60deg) translateY(0) translateZ(-200px);
    }

    100% {
        transform: perspective(500px) rotateX(60deg) translateY(40px) translateZ(-200px);
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .hero-buttons {
        margin-bottom: 2rem;
    }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 2rem;
        margin-top: 1rem;
        padding-top: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

.android-tv-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(248, 250, 252, 1) 0%, rgba(241, 245, 249, 0.7) 100%);
}

.android-tv-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.android-tv-header h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.android-tv-intro {
    font-size: 1.1rem;
    margin-bottom: 0;
    text-align: center;
}

.android-tv-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.android-tv-visual {
    width: 100%;
    display: flex;
    justify-content: center;
}

.android-tv-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    width: 100%;
    max-width: 900px;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius);
    border: var(--glass-border);
    box-shadow: var(--shadow-sm);
}

.benefit-item i {
    font-size: 1.25rem;
    color: var(--primary);
    background: rgba(220, 38, 38, 0.12);
    padding: 10px;
    border-radius: 10px;
}

.android-tv-cta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
}

.android-tv-cta .cta-note {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.android-tv-visual {
    width: 100%;
}

.conversion-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius);
    border: var(--glass-border);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    max-width: 700px;
    width: 100%;
}

.conversion-flow::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(220, 38, 38, 0.08), transparent 50%);
    pointer-events: none;
}

.tv-card {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.tv-card h4 {
    margin-bottom: 0.35rem;
}

.tv-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.tv-icon {
    width: 140px;
    height: 110px;
    margin: 0 auto 1rem;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: var(--shadow-md);
    position: relative;
}

.old-tv-card .tv-icon {
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.old-tv-card .tv-icon::before {
    content: '';
    position: absolute;
    top: -18px;
    width: 40px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-bottom: none;
    border-radius: 50% 50% 0 0;
}

.smart-tv-card .tv-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    font-size: 2.5rem;
}

.arrow-transform {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    border: 2px dashed rgba(220, 38, 38, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    color: var(--primary);
    font-weight: 600;
    background: rgba(220, 38, 38, 0.05);
    z-index: 1;
}

.arrow-transform span {
    font-size: 0.75rem;
    text-transform: uppercase;
}

.conversion-steps {
    padding: 1.5rem;
    border-radius: var(--radius);
    background: rgba(15, 23, 42, 0.85);
    color: #fff;
    display: grid;
    gap: 0.75rem;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 700px;
}

.conversion-steps li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.conversion-steps i {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-services {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-block;
}

.services {
    padding: 8rem 0;
}

.services h2 {
    margin-bottom: 4rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: var(--glass-border);
    padding: 2.5rem;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 38, 38, 0.3);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-lg);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-card:hover .icon-box {
    background: var(--primary);
    color: white;
}

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.gallery {
    padding: 8rem 0;
    background: rgba(248, 250, 252, 0.5);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 1rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .gallery-grid::-webkit-scrollbar {
        display: none;
    }

    .gallery-item {
        flex: 0 0 85%;
        scroll-snap-align: center;
        height: 280px;
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 280px;
    border: var(--glass-border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(11, 17, 32, 1) 0%, rgba(11, 17, 32, 0.95) 60%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

.overlay h4 {
    color: #ffffff;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.overlay p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #e2e8f0;
}

.about {
    padding: 8rem 0;
}

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

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-box {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: var(--glass-border);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: var(--primary);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.feature-box i {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-box h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-box p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.faq {
    padding: 8rem 0;
    background: rgba(248, 250, 252, 0.5);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.05rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-panel {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.contact {
    padding: 8rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: var(--radius);
    padding: 3rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info-item i {
    font-size: 1.25rem;
    color: var(--primary);
    background: rgba(14, 165, 233, 0.1);
    padding: 10px;
    border-radius: 8px;
}

.contact-info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.map-frame {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: var(--radius);
    overflow: hidden;
    border: var(--glass-border);
    filter: none;
    background: #f8fafc;
}

.footer {
    padding: 3rem 0;
    background: #020617;
    border-top: var(--glass-border);
    text-align: center;
}

.footer p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-menu {
        width: 280px;
    }

    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .scroll-to-top {
        bottom: 1.5rem;
        left: 1.5rem;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .android-tv-content {
        grid-template-columns: 1fr;
    }

    .android-tv-text h2 {
        text-align: center;
    }

    .android-tv-benefits {
        grid-template-columns: 1fr;
    }

    .android-tv-visual {
        order: -1;
    }

    .conversion-flow {
        flex-direction: column;
        align-items: stretch;
    }

    .arrow-transform {
        align-self: center;
    }
}

.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.scroll-to-top:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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