/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff5a1f;
    --primary-dark: #e04812;
    --primary-light: #ff7a47;
    --dark: #1c1c1c;
    --gray: #6b6b6b;
    --light-bg: #f6f6f6;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
}

.container {
    width: 1200px;
    max-width: 90%;
    margin: 0 auto;
}

/* ================= HEADER ================= */

.header {
    position: absolute;
    width: 100%;
    padding: 24px 0;
    background: var(--primary);
    z-index: 10;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 45px;
}

nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

.nav-cta {
    background: #fff;
    color: var(--primary);
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
}

/* ================= HERO ================= */

.hero-video {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    color: #fff;
    padding: 20px;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
}

/* ================= SERVIÇOS ================= */

.creative-services {
    padding: 100px 0;
    background: var(--light-bg);
}

.section-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-center h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary);
}

.section-center p {
    color: var(--gray);
}

.creative-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: stretch;
}

.creative-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: 0.3s;
}

.creative-card:hover {
    transform: translateY(-6px);
}

.creative-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.creative-card h3 {
    padding: 25px 30px 10px;
    font-size: 20px;
}

.creative-card p {
    padding: 0 30px 30px;
    color: var(--gray);
    flex-grow: 1;
}
.creative-services {
    padding: 100px 0;
    background: var(--light-bg);
}

.section-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-center h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--primary);
}

.section-center p {
    color: var(--gray);
}

.creative-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: stretch;
}

.creative-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: 0.3s;
}

.creative-card:hover {
    transform: translateY(-6px);
}

.creative-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.creative-card h3 {
    padding: 25px 30px 10px;
    font-size: 20px;
}

.creative-card p {
    padding: 0 30px 30px;
    color: var(--gray);
    flex-grow: 1;
}


/* ================= ABOUT ================= */

.about {
    padding: 100px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-text p {
    margin-bottom: 25px;
    color: var(--gray);
}

.btn-outline-dark {
    border: 2px solid var(--primary);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-images img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 16px;
}

/* ================= TESTIMONIALS ================= */

.testimonials {
    padding: 100px 0;
    background: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testimonial {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* ================= NEWSLETTER ================= */

.newsletter {
    padding: 100px 0;
    text-align: center;
}

.newsletter-form {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 14px 20px;
    width: 350px;
    border-radius: 30px;
    border: 1px solid #ccc;
}

.newsletter-form button {
    padding: 14px 30px;
    border-radius: 30px;
    border: none;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

/* ================= FOOTER ================= */

.footer {
    padding: 50px 0;
    background: var(--primary);
    color: #fff;
    text-align: center;
}

/* ================= RESPONSIVO ================= */

@media (max-width: 992px) {

    .creative-grid,
    .about-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 38px;
    }
}

/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    text-decoration: none;
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}



/* ================= FOOTER PREMIUM ================= */

.footer {
    background: #111;
    color: #ccc;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #aaa;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-brand img {
    height: 45px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #aaa;
    max-width: 280px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
}

.footer-contact i {
    color: var(--primary);
}

.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: #1c1c1c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #222;
    font-size: 14px;
    color: #777;
}

/* RESPONSIVO FOOTER */

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand p {
        max-width: 100%;
    }
}


/* ================= FOOTER ANIMATION ================= */

.animated-footer .footer-col {
    opacity: 0;
    transform: translateY(40px);
    animation: footerFade 0.8s ease forwards;
}

.animated-footer .footer-col:nth-child(1) {
    animation-delay: 0.2s;
}

.animated-footer .footer-col:nth-child(2) {
    animation-delay: 0.4s;
}

.animated-footer .footer-col:nth-child(3) {
    animation-delay: 0.6s;
}

.animated-footer .footer-col:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes footerFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}