/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B00;
    --primary-dark: #E65100;
    --secondary-color: #1A1A1A;
    --accent-color: #00D9FF;
    --text-color: #333;
    --light-text: #fff;
    --dark-bg: #0A0A0A;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --section-padding: 6rem 0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--dark-bg);
    overflow-x: hidden;
}

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

/* Header e Navegação */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    height: 90px;
    display: flex;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo img {
    height: 100px;
    width: auto;
    margin-left: 16px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 6rem;
    margin-right: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--light-text);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 2px;
    position: relative;
    padding: 0.8rem 1.2rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.nav-links a:hover {
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 1.2rem;
    width: calc(100% - 2.4rem);
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    text-align: left;
    color: white;
    max-width: 800px;
    margin: 0;
    padding-left: 4rem;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero h1 span {
    color: var(--light-text);
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    background: linear-gradient(to right, #fff, var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero h1 span:nth-child(1) { animation-delay: 0.2s; }
.hero h1 span:nth-child(2) { animation-delay: 0.4s; }
.hero h1 span:nth-child(3) { animation-delay: 0.6s; }
.hero h1 span:nth-child(4) { animation-delay: 0.8s; }

.hero p {
    font-size: 1.4rem;
    color: var(--light-text);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 1s;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 1.2s;
    justify-content: flex-start;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 1.2rem 2.5rem;
    background: var(--primary-color);
    color: var(--light-text);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: 2px solid transparent;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: var(--light-text);
}

@media (max-width: 1400px) {
    .nav-links {
        gap: 5rem;
    }
}

@media (max-width: 1200px) {
    .nav-links {
        gap: 4rem;
    }
}

@media (max-width: 992px) {
    .nav-links {
        gap: 3rem;
    }
    
    .nav-links a {
        padding: 0.8rem 1rem;
    }
}

@media (max-width: 768px) {
    .header {
        height: 70px;
    }

    .hero {
        height: 100vh;
        min-height: 100vh;
    }

    .hero-video-background {
        position: absolute;
    }

    .hero-video-background video {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero h1 {
        font-size: 3rem;
        align-items: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-button {
        justify-content: center;
    }

    .video-overlay {
        background: linear-gradient(0deg,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.8) 50%,
            rgba(0, 0, 0, 0.4) 100%
        );
    }

    .header {
        padding: 0;
    }

    .navbar {
        padding: 0 1rem;
    }

    .logo img {
        height: 70px;
    }

    .menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1001;
        padding: 0;
    }

    .menu-btn i {
        color: var(--light-text);
        font-size: 24px;
        transition: transform 0.3s ease;
    }

    .menu-btn.active i {
        transform: rotate(180deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease-in-out;
        z-index: 1000;
    }

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

    .nav-links-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        width: 100%;
        padding: 2rem;
    }

    .nav-links a {
        color: var(--light-text);
        font-size: 1.25rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        padding: 0.5rem 0;
        width: 100%;
        text-align: center;
        opacity: 0.9;
        transition: opacity 0.3s ease;
    }

    .nav-links a:hover {
        opacity: 1;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: var(--primary-color);
        transition: width 0.3s ease;
    }

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

    body.menu-open {
        overflow: hidden;
    }

    .about-profile, 
    .about-form {
        margin: 0 auto 2rem auto;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .about-contact-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Espaço extra entre header/menu e hero */
    .conversao-hero .container {
        flex-direction: column !important;
        align-items: center !important;
        padding-top: 90px !important;
        padding-bottom: 2rem;
        padding-left: 1.2rem !important;
        padding-right: 1.2rem !important;
        gap: 1.5rem !important;
        max-width: 100vw;
        box-sizing: border-box;
    }
    .conversao-hero .container > div:first-child,
    .conversao-hero .glass-form {
        max-width: 420px !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box;
    }
    .conversao-hero h1 {
        font-size: 1.5rem !important;
        text-align: center !important;
        margin-top: 0 !important;
        margin-bottom: 1.2rem;
        padding-left: 0.2rem;
        padding-right: 0.2rem;
    }
    .conversao-hero p {
        text-align: center !important;
        font-size: 1rem !important;
        padding-left: 0.2rem;
        padding-right: 0.2rem;
    }

    /* FAQ em 1 coluna no mobile */
    .faq-grid {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
    }

    .glass-form {
        padding: 1.2rem 0.7rem !important;
    }
}

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

    .hero p {
        font-size: 1.1rem;
    }

    .hero-container {
        padding: 0 1.5rem;
    }

    .about-profile, 
    .about-form {
        margin: 0 auto 2rem auto;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .about-contact-container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

/* Seção de Serviços */
.services {
    padding: var(--section-padding);
    background: var(--dark-bg);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color) 0%, transparent 100%);
    opacity: 0.05;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--light-text);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title p {
    color: var(--light-text);
    opacity: 0.9;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.service-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card .btn {
    margin-top: auto;
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 32px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.learn-more i {
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .service-card {
        padding: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 24px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
}

/* Portfolio Section */
.portfolio {
    padding: var(--section-padding);
    background: var(--dark-bg);
    position: relative;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color) 0%, transparent 100%);
    opacity: 0.05;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 4px 24px 0 rgba(255, 107, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(255, 107, 0, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.2);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    color: var(--light-text);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-overlay p {
    color: var(--light-text);
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.9;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.portfolio-item:hover .portfolio-overlay h3,
.portfolio-item:hover .portfolio-overlay p {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-overlay h3 {
        font-size: 1.5rem;
    }
    
    .portfolio-overlay p {
        font-size: 1rem;
    }
}

/* Seção Sobre */
.about {
    padding: var(--section-padding);
    background: #f9f9f9;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about p {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.team-member {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-info {
    margin-top: 1.5rem;
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-info p {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* Seção de Contato */
.contact {
    padding: var(--section-padding);
    background: var(--background);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.glass-form {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 0 auto;
}

.form-group {
    position: relative;
    display: flex;
    align-items: center;
}

.glass-form input,
.glass-form textarea {
    width: 100%;
    padding: 1rem 2.5rem 1rem 1rem;
    border: none;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.glass-form input:focus,
.glass-form textarea:focus {
    box-shadow: 0 0 0 2px var(--primary-color);
}

.form-group i {
    position: absolute;
    right: 1rem;
    color: var(--primary-color);
    font-size: 1.1rem;
    pointer-events: none;
}

.glass-form textarea {
    min-height: 110px;
    resize: vertical;
}

.glass-form .cta-button {
    width: 100%;
    margin-top: 0.5rem;
    background: linear-gradient(90deg, var(--primary-color), #ffb347 80%);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 4px 24px 0 rgba(255, 107, 0, 0.25);
    border: none;
    letter-spacing: 1px;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}

.glass-form .cta-button:hover {
    background: linear-gradient(90deg, #ffb347, var(--primary-color) 80%);
    box-shadow: 0 8px 32px 0 rgba(255, 107, 0, 0.35);
    transform: translateY(-2px) scale(1.03);
}

.glass-form input.error,
.glass-form textarea.error {
    box-shadow: 0 0 0 2px #ff3b3b;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-info {
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 0.5rem;
}

.footer-links, .footer-contact, .footer-social {
    flex: 1 1 180px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 0.2rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #222;
    text-decoration: underline;
}

.footer-contact p, .footer-social a {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.footer-social .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-social a {
    font-size: 1.5rem;
    color: #fff;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: #222;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 1rem;
    color: #fff;
    opacity: 0.9;
    margin-top: 2rem;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* --- SOBRE + CONTATO LADO A LADO --- */
.about-contact-container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    justify-content: center;
    padding: 4rem 0 4rem 0;
    flex-wrap: wrap;
}

.about-profile, .about-form {
    flex: 1 1 350px;
    min-width: 320px;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(30,30,30,0.7);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
}

.about-profile .section-title,
.about-form .section-title {
    margin-bottom: 1.5rem;
}

.about-profile .section-title h2,
.about-form .section-title h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.about-profile .section-title p,
.about-form .section-title p {
    color: var(--light-text);
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.about-profile .team-member {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    background: transparent;
    box-shadow: none;
    padding: 0;
    max-width: 100%;
    width: 100%;
}

.about-profile img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    align-self: center;
}

.about-profile h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
    align-self: center;
}

.about-profile .role {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    align-self: center;
}

.about-profile .about-text {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    text-align: left;
    line-height: 1.6;
}

.about-profile .contact-info {
    margin-top: 1.5rem;
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.about-profile .contact-info p {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.about-profile .contact-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

@media (max-width: 900px) {
    .about-contact-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .about-profile, .about-form {
        width: auto !important;
        max-width: 480px;
        margin: 0 auto 2rem auto;
    }
    
    .about-profile .about-text,
    .about-profile .contact-info {
        text-align: left;
    }
}

/* Remover estilos do Instagram */
.instagram-section,
.instagram-grid,
.instagram-post,
.instagram-post img,
.instagram-post .ig-overlay {
    display: none;
}

/* Seção de Marcas Parceiras */
.partners {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, var(--dark-bg), rgba(10, 10, 10, 0.97));
    position: relative;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color) 0%, transparent 100%);
    opacity: 0.02;
}

.partners .section-title {
    margin-bottom: 4rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.partner-item img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%) brightness(150%) contrast(80%);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.partner-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 107, 0, 0.2);
}

.partner-item:hover img {
    filter: grayscale(0%) brightness(100%) contrast(100%);
    opacity: 1;
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Video Carousel Section */
.video-carousel-section {
    margin-top: 6rem;
    padding: 2rem 0;
    background: var(--dark-bg);
    position: relative;
}

.video-carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color) 0%, transparent 100%);
    opacity: 0.02;
}

.carousel-title {
    color: var(--light-text);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.video-carousel {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.carousel-container {
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-item {
    flex: 0 0 calc(20% - 1.2rem); /* 5 itens por vez */
    max-width: calc(20% - 1.2rem);
    position: relative;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.story-video {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 9/16;
    background: #111;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    height: 400px;
}

.story-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Estilos para mobile */
.carousel-item.mobile .story-video {
    height: 85vh; /* Altura quase full screen no mobile */
    max-height: 700px;
    width: 100%;
    margin: 0 auto;
}

.carousel-item.mobile video {
    object-fit: contain; /* Garantir que o vídeo fique totalmente visível */
}

/* Customização dos controles de vídeo no mobile */
.carousel-item.mobile video::-webkit-media-controls {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.carousel-item.mobile video::-webkit-media-controls-panel {
    display: flex !important;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-item.mobile video:hover::-webkit-media-controls-panel {
    opacity: 1;
}

.carousel-item.mobile .story-overlay {
    padding-bottom: 4rem; /* Espaço extra para os controles */
}

/* Indicador de áudio */
.carousel-item.unmuted::after {
    content: '🔊';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    z-index: 2;
}

.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: #fff;
}

.story-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    transform-origin: left;
}

.story-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.story-video:hover .story-progress::after {
    transform: scaleX(1);
}

.story-overlay h4 {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.carousel-button.prev {
    left: 0;
}

.carousel-button.next {
    right: 0;
}

.carousel-button:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.carousel-item:hover {
    transform: scale(1.05);
    z-index: 1;
}

.carousel-item:hover video {
    transform: scale(1.1);
}

/* Responsividade do carrossel */
@media (max-width: 1400px) {
    .carousel-item {
        flex: 0 0 calc(25% - 1.125rem); /* 4 itens */
        max-width: calc(25% - 1.125rem);
    }
}

@media (max-width: 1200px) {
    .carousel-item {
        flex: 0 0 calc(33.333% - 1rem); /* 3 itens */
        max-width: calc(33.333% - 1rem);
    }
    .story-video {
        height: 380px;
    }
}

@media (max-width: 900px) {
    .carousel-item {
        flex: 0 0 calc(50% - 0.75rem); /* 2 itens */
        max-width: calc(50% - 0.75rem);
    }
    .story-video {
        height: 360px;
    }
}

@media (max-width: 600px) {
    .carousel-item {
        flex: 0 0 calc(100% - 2rem); /* 1 item */
        max-width: calc(100% - 2rem);
    }
    
    .video-carousel {
        padding: 0 40px;
    }
    
    .story-video {
        height: 480px;
    }
}

/* Ajustes responsivos atualizados */
@media (max-width: 768px) {
    .video-carousel {
        padding: 0;
    }

    .carousel-track {
        gap: 0;
    }

    .carousel-item {
        flex: 0 0 100%;
        max-width: 100%;
        margin: 0;
    }

    .carousel-button {
        display: none; /* Esconder botões no mobile - usar swipe */
    }

    .story-video {
        border-radius: 0; /* Remover border radius no mobile */
    }

    /* Melhorar visualização dos controles */
    video::-webkit-media-controls-play-button,
    video::-webkit-media-controls-volume-slider,
    video::-webkit-media-controls-mute-button {
        display: flex;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        padding: 5px;
    }
}

/* Estilos Mobile */
@media (max-width: 768px) {
    /* Ajustes gerais de texto */
    h1 {
        font-size: 2.5rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    h2 {
        font-size: 2rem !important;
        margin-bottom: 0.8rem;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    p {
        font-size: 1rem !important;
        line-height: 1.4;
    }

    /* Ajustes de container e margens */
    .container {
        padding: 0 1rem;
    }

    section {
        padding: 3rem 0;
    }

    /* Menu Mobile */
    .header {
        padding: 0.5rem 0;
    }

    .menu-btn {
        display: block;
        position: relative;
        z-index: 1000;
        padding: 1rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s ease-in-out;
        z-index: 999;
    }

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

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem;
        width: 100%;
        text-align: center;
    }

    /* Hero Section Mobile */
    .hero-content {
        padding-top: 80px;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    /* Portfolio Grid Mobile */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    .portfolio-item {
        margin-bottom: 1rem;
    }

    /* Carrossel de Projetos Mobile */
    .portfolio .carousel-item {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 1rem;
    }

    /* Video Carousel Mobile */
    .video-carousel {
        padding: 0;
    }

    .carousel-item.mobile .story-video {
        height: 70vh;
        max-height: 600px;
        border-radius: 15px;
        margin: 0 1rem;
        width: calc(100% - 2rem);
    }

    .carousel-track {
        gap: 0;
    }

    .carousel-item {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }

    /* Formulário Mobile */
    .glass-form {
        padding: 2rem 1rem;
        margin: 0 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 1rem;
    }

    /* Seção Sobre Mobile */
    .about-profile, 
    .about-form {
        padding: 2rem 1rem;
        margin: 0 1rem 2rem;
    }

    .team-member img {
        width: 100px;
        height: 100px;
    }

    /* Seção de Serviços Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    .service-card {
        margin-bottom: 1rem;
    }

    /* Seção de Marcas Mobile */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }

    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }

    .footer-info, 
    .footer-links, 
    .footer-contact, 
    .footer-social {
        width: 100%;
    }
}

/* Ajustes específicos para telas muito pequenas */
@media (max-width: 360px) {
    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    .hero-content {
        padding-top: 60px;
    }

    .carousel-item.mobile .story-video {
        height: 60vh;
    }
}

@media (max-width: 480px) {
    .contact-info p {
        font-size: 0.9rem !important;
        gap: 0.5rem;
    }

    .contact-info i {
        font-size: 1rem;
        width: 16px;
    }
}

@media (max-width: 768px) {
    .container.about-contact-container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

@media (max-width: 480px) {
    .container.about-contact-container {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
}

.portfolio-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.portfolio-links {
    display: flex;
    gap: 15px;
}

.portfolio-links a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.portfolio-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .portfolio-item img {
        height: 200px;
    }
    
    .portfolio-overlay h3 {
        font-size: 1.2rem;
    }
}

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
}

.contact-item i {
    font-size: 1.5rem;
    color: #00ff88;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.form-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 5px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background: #00ff88;
    color: #1a1a1a;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #00cc6a;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 20px;
    }
}

/* Estilos para notificações */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
}

.notification.success {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.notification.error {
    background: linear-gradient(135deg, #f44336, #d32f2f);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
} 