* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevenir scroll lateral globalmente */
*,
*::before,
*::after {
    max-width: 100%;
}

:root {
    --primary-blue: #0066cc;
    --dark-blue: #003d7a;
    --light-blue: #4da6ff;
    --cyan: #00d4ff;
    --gray: #2a2a2a;
    --light-gray: #999;
    --white: #ffffff;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: #000;
    color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-blue);
    border-radius: 50%;
    animation: float-particle 15s infinite;
    will-change: transform;
    transform: translateZ(0);
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

.wave-bg {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    height: 300px;
    background: linear-gradient(180deg, transparent, rgba(0, 102, 204, 0.1));
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100vw;
    padding: 25px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 102, 204, 0.3);
    box-sizing: border-box;
}

.logo {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan), var(--primary-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.logo a {
    text-decoration: none;
    display: inline-block;
}

.logo-img {
    width: 35%;
    height: auto;
    max-width: 240px;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
    position: relative;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--cyan);
    transition: all 0.3s;
    border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--primary-blue));
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-menu a:hover::before {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--cyan);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 80px 100px;
    z-index: 1;
    background: radial-gradient(ellipse at top, rgba(0, 102, 204, 0.15), transparent 70%);
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content {
    width: 100%;
    text-align: left;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
    background-size: 100px 100px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    animation: grid-flow 20s linear infinite;
    overflow: hidden;
    pointer-events: none;
}

@keyframes grid-flow {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0) translateZ(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(100px) translateZ(0); }
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
    border: 2px solid rgba(0, 212, 255, 0.2);
    transition: transform 0.4s, box-shadow 0.4s;
    object-fit: cover;
    background: rgba(0, 212, 255, 0.05);
    min-height: 400px;
    display: block;
}

.hero-img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 212, 255, 0.5);
}

.hero-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 102, 204, 0.1));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.hero-img[src=""],
.hero-img:not([src]) {
    opacity: 0.3;
}

.hero-image:has(.hero-img[src=""])::before,
.hero-image:has(.hero-img:not([src]))::before {
    opacity: 1;
}

.hero-badge {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--cyan);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-out;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 80px;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--white) 0%, var(--cyan) 50%, var(--primary-blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: both;
}

.hero .tagline {
    font-size: 28px;
    color: var(--light-gray);
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.4s;
    animation-fill-mode: both;
    font-weight: 300;
    letter-spacing: 1px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: flex-start;
    margin-top: 50px;
    animation: fadeInUp 1s ease-out 0.6s;
    animation-fill-mode: both;
}

.btn {
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan), var(--primary-blue));
    color: var(--white);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--cyan);
    border: 2px solid var(--cyan);
}

.btn-outline:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-5px);
}

.metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-top: 100px;
    animation: fadeInUp 1s ease-out 0.8s;
    animation-fill-mode: both;
}

.metric-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    transition: all 0.4s;
}

.metric-card:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: var(--cyan);
    transform: translateY(-10px);
}

.metric-number {
    font-size: 52px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan), var(--primary-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 14px;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section {
    position: relative;
    padding: 80px 80px;
    z-index: 1;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--cyan);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--white), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 20px;
    color: var(--light-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 18px;
    color: var(--light-gray);
    line-height: 1.9;
    margin-bottom: 25px;
    text-align: left;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 25px;
    padding: 45px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--cyan);
    box-shadow: 0 25px 70px rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.05);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--cyan), var(--primary-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 36px;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    padding: 10px;
}

.service-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 700;
}

.service-card p {
    color: var(--light-gray);
    line-height: 1.8;
    font-size: 16px;
}

.service-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
    position: relative;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
    border: 1px solid rgba(0, 212, 255, 0.2);
    background: rgba(0, 212, 255, 0.05);
    display: block;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 102, 204, 0.1));
    border-radius: 15px;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.service-image[src=""],
.service-image:not([src]) {
    opacity: 0.3;
}

.service-image-container:has(.service-image[src=""])::before,
.service-image-container:has(.service-image:not([src]))::before {
    opacity: 1;
}

.service-tag {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--cyan);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--cyan);
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.features-section {
    background: radial-gradient(ellipse at center, rgba(0, 102, 204, 0.1), transparent 70%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s;
}

.feature-box:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: var(--cyan);
    transform: translateY(-8px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-box h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 700;
}

.feature-box p {
    font-size: 14px;
    color: var(--light-gray);
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    padding: 80px 80px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.15), rgba(0, 212, 255, 0.1));
    position: relative;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.cta-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
    border: 2px solid rgba(0, 212, 255, 0.2);
    transition: transform 0.4s, box-shadow 0.4s;
    object-fit: cover;
}

.contact-img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 212, 255, 0.5);
}

.cta-content {
    text-align: left;
}

.cta-content .scroll-reveal {
    text-align: left;
}

.cta-content .btn-container {
    text-align: center;
    display: flex;
    justify-content: center;
}

.cta-content .btn {
    margin: 0 auto;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="%230066cc" opacity="0.3"/></svg>');
    opacity: 0.1;
}

.cta-section h2 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--white), var(--cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-content h2 {
    text-align: left;
}

.cta-section p {
    font-size: 20px;
    color: var(--light-gray);
    margin-bottom: 50px;
    max-width: 700px;
}

.cta-content p {
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

.contact-info {
    margin-top: 50px;
    display: flex;
    justify-content: flex-start;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    color: var(--cyan);
    font-weight: 600;
}

.contact-item a {
    color: var(--cyan);
    text-decoration: none;
    transition: all 0.3s;
}

.contact-item a:hover {
    color: var(--white);
    text-decoration: underline;
}

footer {
    padding: 60px 80px;
    text-align: center;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    background: rgba(0, 0, 0, 0.95);
}

footer p {
    color: var(--light-gray);
    font-size: 15px;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    nav {
        padding: 20px 50px;
    }

    .logo-img {
        width: 50%;
        max-width: 220px;
    }

    .hero {
        padding: 140px 50px 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-img {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 56px;
    }

    .hero .tagline {
        font-size: 24px;
    }

    .section {
        padding: 60px 50px;
    }

    .section-title {
        font-size: 42px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .about-content p {
        font-size: 16px;
    }

    .metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .service-card {
        padding: 35px;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .cta-section {
        padding: 60px 50px;
    }

    .cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-content {
        text-align: center;
    }

    .cta-content h2 {
        text-align: center;
    }

    .cta-content p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-info {
        justify-content: center;
    }

    .cta-section h2 {
        font-size: 42px;
    }

    footer {
        padding: 50px 50px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    .logo {
        font-size: 24px;
    }

    .logo-img {
        width: 50%;
        max-width: 180px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 30px;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(0, 212, 255, 0.3);
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        font-size: 16px;
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    }

    .hero {
        padding: 120px 20px 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero .tagline {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .hero-badge {
        padding: 10px 20px;
        font-size: 12px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 30px;
    }

    .btn {
        padding: 15px 35px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
    }

    .metrics {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 60px;
    }

    .metric-card {
        padding: 25px 20px;
    }

    .metric-number {
        font-size: 42px;
    }

    .metric-label {
        font-size: 12px;
    }

    .section {
        padding: 50px 20px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-badge {
        padding: 8px 20px;
        font-size: 11px;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .about-content p {
        font-size: 15px;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 30px 25px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .service-card p {
        font-size: 15px;
        line-height: 1.7;
    }

    .service-image-container {
        height: 180px;
        margin-bottom: 15px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-box {
        padding: 25px 20px;
    }

    .feature-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .feature-box h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .feature-box p {
        font-size: 14px;
    }

    .cta-section {
        padding: 50px 20px;
    }

    .cta-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-image {
        order: -1;
    }

    .contact-img {
        max-width: 100%;
        border-radius: 15px;
    }

    .cta-content {
        text-align: center;
    }

    .cta-content .scroll-reveal {
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .cta-content .btn {
        margin: 0 auto;
    }

    .cta-content h2 {
        text-align: center;
    }

    .cta-content p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-section h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .cta-section p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
        justify-content: center;
    }

    .contact-item {
        font-size: 16px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    footer {
        padding: 40px 20px;
    }

    footer p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero .tagline {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .logo-img {
        width: 60%;
        max-width: 150px;
    }
}

/* Scroll Reveal Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Elementos que já estão visíveis na tela inicial não devem ficar invisíveis */
.hero .scroll-reveal {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

