
:root {

    --primary-color: #F2B705; 
    --dark-color: #0A2B4E;    
    --light-color: #f4f8fb;   
    --white-color: #FFFFFF;
    --text-color: #333;
    --shadow: 0 4px 12px rgba(0,0,0,0.05);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

html {
    scroll-behavior: smooth;
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

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


.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 4rem 0;
    overflow-x: hidden;
}

section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.bg-light {
    background-color: var(--light-color);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--dark-color); 
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #e0aa04; 
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}


header {
    background-color: var(--dark-color); 
    box-shadow: var(--shadow);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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


.logo {
    display: flex;
    flex-direction: column;
}
.logo div {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
}
.logo .vos {
    color: var(--white-color);
}
.logo .films {
    color: var(--primary-color); 
}
.logo .tagline {
    font-size: 0.7rem;
    color: #aaa; 
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--white-color); 
    transition: color 0.3s ease;
    padding-bottom: 5px;
}

.nav-links a:hover {
    color: var(--primary-color); 
    border-bottom: 2px solid var(--primary-color);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: var(--white-color);
    transition: all 0.3s ease;
}
.hamburger.active .line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active .line:nth-child(2) { opacity: 0; }
.hamburger.active .line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }


.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}

.hero::before { 
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 43, 78, 0.6); 
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}
.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--white-color);
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: left;
}

.servico-card {
    background-color: var(--white-color);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color); 
    transition: all 0.3s ease;
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.08);
}

.servico-card h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}


#contato h2 {
    margin-bottom: 1rem;
}

#contato > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}


.contact-form-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form-card h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-form-card p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}


#form-status {
    display: none;
}


.contact-form-card label {
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--text-color);
}

.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
    color: #999;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 5px rgba(242, 183, 5, 0.5);
}


.contact-form-card .cta-button {
    width: 100%;
    margin-top: 1.5rem;
    font-size: 1rem;
}

.contact-form-card .cta-button i {
    margin-right: 0.5rem;
}


.contact-direct {
    padding-top: 1rem;
}

.contact-direct h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}


.social-icons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--white-color);
    background-color: #ccc;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}


.social-icon.whatsapp { background-color: #25D366; }
.social-icon.instagram { background-color: #E4405F; }
.social-icon.facebook { background-color: #1877F2; }
.social-icon.email { background-color: #777; }

.contact-info-block {
    margin-top: 2rem;
    padding-left: 1rem;
    border-left: 3px solid var(--primary-color);
}
.contact-info-block p {
    margin-bottom: 0.5rem;
}

#portfolio > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.portfolio-item {
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}

.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9; 
    object-fit: cover;
}

.portfolio-description {
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

footer {
    background-color: var(--dark-color); 
    color: var(--light-color);
    text-align: center;
    padding: 2rem 0;
}


.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-section.show {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background-color: var(--dark-color); 
        box-shadow: -5px 0 10px rgba(0,0,0,0.1);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: right 0.4s ease-in-out;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links li {
        margin-left: 0;
        font-size: 1.2rem;
    }
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
}