/* =========================================
           RESET E VARIÁVEIS
           ========================================= */
        :root {
            --primary: #dddd37a4;
            --secondary: #ccccccaf;
            --bg-overlay: rgba(0, 0, 0, 0.205);
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
            --text-light: #ccc;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Open Sans', sans-serif;
            scroll-behavior: smooth;
            /* Rolagem suave nativa */
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        .logo {
            font-family: 'Sora', sans-serif;
        }

        body {
            background-color: #000;
            color: var(--text-light);
            overflow-x: hidden;
        }

        /* =========================================
           VÍDEO DE FUNDO
           ========================================= */
        #bg-video {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            object-fit: cover;
            z-index: -2;
            filter: brightness(0.6);
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: var(--bg-overlay);
            z-index: -1;
        }

        /* =========================================
           MENU FIXO NO TOPO
           ========================================= */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--glass-border);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(221, 221, 55, 0.5);
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 25px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--text-light);
            font-weight: 500;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s ease, text-shadow 0.3s ease;
            position: relative;
        }

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

        nav ul li a:hover,
        nav ul li a.active {
            color: var(--primary);
            /*text-shadow: 0 0 8px rgba(221, 221, 55, 0.6);*/
        }

        nav ul li a:hover::after,
        nav ul li a.active::after {
            width: 100%;
        }

        /* =========================================
           SEÇÕES GERAIS
           ========================================= */
        section {
            min-height: 100vh;
            width: 100%;
            padding: 100px 5vw 50px 5vw;
            /* Espaço para o header */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .container {
            max-width: 1200px;
            width: 100%;
        }

        .section-title {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            font-weight: 800;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
            letter-spacing: 2px;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #ccc;
            text-align: center;
            margin-bottom: 50px;
            max-width: 800px;
            margin-inline: auto;
        }

        /* =========================================
           CARROSSEL DE LOGOS (TICKER)
           ========================================= */
        .logo-ticker-wrapper {
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            /* Força 100% da largura da tela */
            background-color: #ffffff;
            padding: 20px 0;
            overflow: hidden;
            position: relative;
            /* Máscara para sumir suavemente nas bordas */
            -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
            mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
            margin-top: 80px;
            /* Espaço para o header fixo */
            margin-bottom: 60px;
        }

        .logo-ticker-track {
            display: flex;
            width: max-content;
            animation: scroll-ticker 30s linear infinite;
        }

        .logo-ticker-track:hover {
            animation-play-state: paused;
        }

        .logo-item {
            width: 250px;
            /* Largura padrão de cada logo */
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0 20px;
        }

        /* Estilo dos logos (textos provisórios ou imagens reais) */
        .logo-item svg,
        .logo-item img,
        .logo-item h4 {
            filter: grayscale(100%) opacity(40%);
            /* Deixa tudo cinza claro */
            transition: filter 0.3s ease;
            color: #555;
            font-size: 1.6rem;
            font-weight: 800;
            text-transform: uppercase;
            margin: 0;
            white-space: nowrap;
        }

        .logo-item:hover svg,
        .logo-item:hover img,
        .logo-item:hover h4 {
            filter: grayscale(100%) opacity(80%);
            /* Escurece no hover */
        }

        @keyframes scroll-ticker {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }
        

        /* =========================================
           ANIMAÇÕES DE INTERAÇÃO (OBSERVER)
           ========================================= */
        .hidden {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .hidden-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .hidden-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .show {
            opacity: 1;
            transform: translate(0, 0);
        }

        .delay-100 {
            transition-delay: 100ms;
        }

        .delay-200 {
            transition-delay: 200ms;
        }

        .delay-300 {
            transition-delay: 300ms;
        }

        .delay-400 {
            transition-delay: 400ms;
        }

        .delay-500 {
            transition-delay: 500ms;
        }

        .delay-600 {
            transition-delay: 600ms;
        }

        /* =========================================
           EFEITOS ESPECÍFICOS DE SEÇÃO
           ========================================= */

        /* Home */
        #home .hero-content {
            text-align: center;
        }

        #home h1 {
            font-size: 5rem;
            margin-bottom: 20px;
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
            text-transform: uppercase;
            font-weight: 900;
        }

        .btn-glow {
            display: inline-block;
            padding: 15px 40px;
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: bold;
            text-decoration: none;
            text-transform: uppercase;
            box-shadow: 0 0 15px rgba(221, 221, 55, 0.3), inset 0 0 10px rgba(221, 221, 55, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-glow:hover {
            background: var(--primary);
            color: #000;
            box-shadow: 0 0 25px rgba(221, 221, 55, 0.6), inset 0 0 15px rgba(221, 221, 55, 0.4);
            transform: scale(1.05);
        }

        /* About & Unidades - Glassmorphism Card */
        .glass-card {
            background: var(--glass-bg);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
            transition: transform 0.3s ease, border-color 0.3s ease;
        }

        .glass-card:hover {
            transform: translateY(-5px);
            border-color: rgba(221, 221, 55, 0.3);
        }

        /* About - Texto em Colunas e Fundo Minimalista */
        #about {
            background-color: #dddd37;
            color: #000;
            padding-top: 0;
            /* Para o ticker ficar bem posicionado abaixo do menu */
            justify-content: flex-start;
        }

        #about .section-title {
            background: none;
            -webkit-text-fill-color: #000;
            color: #000;
        }

        .about-columns {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            text-align: left;
            margin-top: 20px;
        }

        .about-columns p {
            line-height: 1.8;
            font-size: 1.15rem;
            margin-bottom: 20px;
            color: #000;
            /* Texto preto para contrastar no fundo amarelo */
        }

        /* Seção Work - Fundo Branco e Customização */
        #work {
            background-color: #000000;
            justify-content: flex-start;
            padding-top: 120px;
        }

        #work .section-title {
            background: none;
            -webkit-text-fill-color: #ffffff;
            color: #333;
            text-align: left;
            text-transform: none;
            font-size: 2.8rem;
            margin-bottom: 30px;
            width: 100%;
        }

        #work .section-subtitle {
            display: none;
            /* Escondido para manter o layout idêntico à referência */
        }

        /* Work - Cards Estilo Instagram */
        .work-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            width: 100%;
            margin-top: 20px;
        }

        .work-card-wrapper {
            position: relative;
            border-radius: 20px;
            padding: 2px;
            /* espaço para borda animada */
            height: 420px;
            perspective: 1200px;
            /* Efeito 3D da imagem saltando */
            display: flex;
            cursor: pointer;
        }

        /* Fundo com a borda animada */
        .work-animated-bg {
            position: absolute;
            inset: 0;
            border-radius: 20px;
            overflow: hidden;
            z-index: 0;
        }

        .work-animated-bg::before,
        .work-animated-bg::after {
            content: '';
            position: absolute;
            width: 150%;
            height: 150%;
            top: -25%;
            left: -25%;
            z-index: 0;
            animation: rotate-border 4s linear infinite;
        }

        .work-animated-bg::before {
            background: conic-gradient(transparent, transparent, transparent, var(--primary));
        }

        .work-animated-bg::after {
            background: conic-gradient(transparent, transparent, transparent, var(--secondary));
            animation-delay: -2s;
        }

        /* Animação de Rotação da Borda */
        @keyframes rotate-border {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        /* Estrutura interna do card */
        .insta-card {
            background: #ffffff;
            border-radius: 18px;
            width: 100%;
            height: 100%;
            z-index: 1;
            display: flex;
            flex-direction: column;
            padding: 25px;
            position: relative;
            transition: all 0.4s ease;
            border: 1px solid #eaeaea;
            /* Borda leve interna para definição fina */
        }

        .insta-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: auto;
        }

        .insta-avatar {
            width: 40px;
            height: 40px;
            background: #000;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-family: 'Sora', sans-serif;
            font-weight: 800;
            color: var(--primary);
        }

        .insta-body {
            text-align: center;
            margin: auto 0;
            transition: opacity 0.4s ease, filter 0.4s ease;
            z-index: 2;
        }

        .insta-body h3 {
            font-size: 1.6rem;
            color: #222;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .insta-body p {
            font-size: 0.90rem;
            color: #999;
            max-width: 90%;
            margin: 0 auto;
            font-weight: 600;
            line-height: 1.4;
        }

        .insta-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            padding-top: 20px;
            padding-bottom: 5px;
            z-index: 2;
            /* Borda superior removida conforme o design da imagem */
        }

        .insta-icons-left {
            display: flex;
            gap: 18px;
        }

        .insta-icon {
            color: #000;
            transition: color 0.3s ease, transform 0.3s ease;
            display: flex;
        }

        .insta-icon svg {
            width: 24px;
            height: 24px;
        }

        .insta-icon:hover {
            color: #555;
            transform: scale(1.15);
        }

        /* Efeito da Imagem Projetada */
        .projected-image {
            position: absolute;
            top: 20%;
            left: 50%;
            width: 85%;
            height: 200px;
            object-fit: cover;
            border-radius: 12px;
            transform: translateX(-50%) translateZ(-50px) translateY(40px);
            opacity: 0;
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            /* Efeito elástico */
            pointer-events: none;
            z-index: 10;
            box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .work-card-wrapper:hover .projected-image {
            opacity: 1;
            transform: translateX(-50%) translateZ(80px) translateY(-30px) scale(1.05);
        }

        .work-card-wrapper:hover .insta-body {
            opacity: 0.05;
            /* Esconde o texto suavemente no hover */
            filter: blur(5px);
        }

        /* =========================================
           LIVE MARKETING
           ========================================= */
        #live-marketing {
            padding-top: 120px;
            justify-content: flex-start;
            background-color: #000;
        }

        #live-marketing .section-title {
            text-align: left;
            background: none;
            -webkit-text-fill-color: #fff;
            color: #fff;
            font-size: 3rem;
            margin-bottom: 40px;
        }

        .live-marketing-grid {
            display: grid;
            grid-template-columns: 350px 1fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 80px;
        }

        /* Live Marketing - Wrapper para Borda Animada */
        .live-card-wrapper {
            position: relative;
            border-radius: 20px;
            padding: 3px;
            /* Espessura da borda animada */
            display: flex;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }

        .live-animated-bg {
            position: absolute;
            inset: 0;
            border-radius: 20px;
            overflow: hidden;
            z-index: 0;
        }

        .live-animated-bg::before,
        .live-animated-bg::after {
            content: '';
            position: absolute;
            width: 150%;
            height: 150%;
            top: -25%;
            left: -25%;
            z-index: 0;
            animation: rotate-border 4s linear infinite;
        }

        .live-animated-bg::before {
            background: conic-gradient(transparent, transparent, transparent, #ffffff);
        }

        .live-animated-bg::after {
            background: conic-gradient(transparent, transparent, transparent, #000000);
            animation-delay: -2s;
        }

        /* Card Amarelo */
        .insta-card-yellow {
            background: #dddd37;
            height: 480px;
            z-index: 1;
            width: 100%;
        }

        .insta-card-yellow .insta-header .insta-avatar {
            border-color: #000;
            color: #000;
        }

        .insta-card-yellow .insta-body h3 {
            color: #000;
            font-size: 2rem;
            line-height: 1.1;
        }

        .insta-card-yellow .insta-body p {
            color: rgba(0, 0, 0, 0.6);
            font-weight: 600;
            max-width: 90%;
            margin-top: 20px;
        }

        .insta-card-yellow .insta-footer {
            border-top-color: rgba(0, 0, 0, 0.1);
        }

        .insta-icon-dark {
            color: #000;
        }

        .insta-icon-dark:hover {
            color: #555;
            transform: scale(1.15);
        }

        /* Textos descritivos */
        .live-text-col p {
            font-size: 1.15rem;
            line-height: 1.8;
            margin-bottom: 25px;
            color: #fff;
        }

        .live-text-col strong {
            font-weight: 800;
            color: #fff;
        }

        /* Galeria de Fotos Infinita */
        .photo-ticker-wrapper {
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            overflow: hidden;
            position: relative;
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            margin-top: 20px;
        }

        .photo-ticker-track {
            display: flex;
            width: max-content;
            animation: scroll-ticker 40s linear infinite;
        }

        .photo-ticker-track:hover {
            animation-play-state: paused;
        }

        .photo-item {
            height: 300px;
            width: 450px;
        }

        .photo-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* =========================================
           CONTATO UNIFICADO
           ========================================= */
        #contato {
            padding: 0;
            flex-direction: row;
            align-items: stretch;
            background-color: #ffffffc5;
            min-height: 100vh;
        }

        .contact-left {
            background-color: #dddd37;
            width: 35%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding: 100px 5vw;
            color: #000;
        }

        .contact-left h3 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 5px;
        }

        .contact-left p {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 40px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-bottom: 10px;
        }

        .social-icons svg {
            width: 24px;
            height: 24px;
            fill: #000;
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .social-icons svg:hover {
            transform: scale(1.15);
        }

        .contact-right {
            width: 65%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 100px 8vw;
            background-color: #ffffff;
        }

        .contact-right .section-title {
            text-align: left;
            font-size: 2.5rem;
            color: #333;
            background: none;
            -webkit-text-fill-color: #333;
            margin-bottom: 10px;
        }

        .contact-right .section-subtitle {
            text-align: left;
            font-size: 1rem;
            color: #777;
            margin-bottom: 40px;
        }

        .contact-form-unified {
            display: flex;
            flex-direction: column;
            gap: 20px;
            width: 100%;
            max-width: 500px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group label {
            font-size: 0.9rem;
            font-weight: 700;
            color: #222;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            background: #fff;
            border: 1px solid #d1d1d1;
            border-radius: 6px;
            color: #333;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #000;
            box-shadow: 0 0 0 1px #000;
        }

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

        .btn-submit-unified {
            background-color: #000;
            color: #fff;
            border: none;
            padding: 16px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
            margin-top: 10px;
            width: 100%;
        }

        .btn-submit-unified:hover {
            background-color: #333;
            transform: translateY(-2px);
        }

        /* =========================================
           RESPONSIVIDADE
           ========================================= */
        @media (max-width: 900px) {
            header {
                flex-direction: column;
                gap: 15px;
                padding: 15px;
            }

            nav ul {
                gap: 15px;
                flex-wrap: wrap;
                justify-content: center;
            }

            #home h1 {
                font-size: 3rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .about-columns {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .live-marketing-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .insta-card-yellow {
                max-width: 400px;
                margin: 0 auto;
            }

            #contato {
                flex-direction: column;
            }

            .contact-left,
            .contact-right {
                width: 100%;
                padding: 50px 5vw;
            }
        }

        /* =========================================
           FOOTER CLEAN
           ========================================= */
        .clean-footer {
            background-color: #050505;
            padding: 40px 5vw;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            z-index: 10;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-logo {
            font-family: 'Sora', sans-serif;
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-copy {
            font-size: 0.9rem;
            color: #777;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }

        .logo-item img{
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .7;
    transition: .3s;
}

.logo-item img:hover{
    filter: grayscale(0%);
    opacity: 1;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}


#success-msg {
    display: none;
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 12px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.12);
    animation: fadeInUp 0.4s ease;
}

#success-msg.show {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.footer-logo img {
    max-width: 180px; /* ajuste conforme necessário */
    height: auto;
    display: block;
}

.insta-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insta-logo {
    width: 100%;
    /*height: 100%;*/
    object-fit: cover; /* ou contain se não quiser cortar */
}

.welcome-image{
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 30px auto;
}

.work-description {
    max-width: 820px;
    margin: 24px 0 60px;
    text-align: left;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

.work-description strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

/* =========================================================
   YANK — CONTATO / RD STATION
   REFERÊNCIA VISUAL — SEGUNDA IMAGEM
   ========================================================= */

#contato {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    width: 100% !important;
    min-height: 100vh !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #fff !important;
    box-sizing: border-box !important;
}

/* PAINEL AMARELO — 35% */
#contato .contact-left {
    width: 35% !important;
    flex: 0 0 35% !important;
    min-width: 0 !important;
    min-height: 100vh !important;
    box-sizing: border-box !important;

    padding: 100px 5vw !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;

    background: #dddd37 !important;
    color: #000 !important;
}

/* PAINEL BRANCO — 65% */
#contato .contact-right {
    width: 65% !important;
    flex: 0 0 65% !important;
    min-width: 0 !important;
    min-height: 100vh !important;
    box-sizing: border-box !important;

    /* Posição do conteúdo conforme a referência */
    padding: 70px 0 60px 0 !important;

    display: block !important;
    background: #fff !important;
}

/* TÍTULO — mesmo eixo do formulário */
#contato .contact-right > div {
    width: 500px !important;
    max-width: 500px !important;
    margin-left: 150px !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
}

#contato .contact-right .section-title {
    width: 500px !important;
    max-width: 500px !important;

    margin: 0 0 10px !important;
    padding: 0 !important;

    text-align: center !important;

    font-family: 'Open Sans', sans-serif !important;
    font-size: 2.5rem !important;
    line-height: 1.15 !important;
    font-weight: 800 !important;

    color: #333 !important;
    background: none !important;
    -webkit-text-fill-color: #333 !important;
}

#contato .contact-right .section-subtitle {
    width: 500px !important;
    max-width: 500px !important;

    margin: 0 0 52px !important;
    padding: 0 !important;

    text-align: center !important;

    font-family: 'Open Sans', sans-serif !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    font-weight: 400 !important;

    color: #777 !important;
}

/* CONTAINER DO RD */
#contato-site-yank-ea7429e3df58a3d6a4bb {
    display: block !important;

    width: 500px !important;
    max-width: 500px !important;
    min-width: 500px !important;

    margin: 0 !important;
    padding: 0 !important;

    box-sizing: border-box !important;
}

/* CAMADAS GERADAS PELO RD */
#contato-site-yank-ea7429e3df58a3d6a4bb [id^="rd-section-"],
#contato-site-yank-ea7429e3df58a3d6a4bb [id^="rd-row-"],
#contato-site-yank-ea7429e3df58a3d6a4bb [id^="rd-column-"],
#contato-site-yank-ea7429e3df58a3d6a4bb .rd-form,
#contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form,
#contato-site-yank-ea7429e3df58a3d6a4bb form {
    width: 500px !important;
    max-width: 500px !important;
    min-width: 500px !important;

    margin: 0 !important;
    padding: 0 !important;

    box-sizing: border-box !important;

    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

/* CAMPOS */
#contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form__field {
    display: flex !important;
    flex-direction: column !important;

    width: 500px !important;
    max-width: 500px !important;

    margin: 0 0 16px !important;
    padding: 0 !important;

    box-sizing: border-box !important;
}

/* LABEL */
#contato-site-yank-ea7429e3df58a3d6a4bb label,
#contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form__label {
    display: block !important;

    width: 500px !important;
    max-width: 500px !important;

    margin: 0 0 7px !important;
    padding: 0 !important;

    color: #222 !important;

    font-family: 'Open Sans', sans-serif !important;
    font-size: 14px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
}

/* INPUTS */
#contato-site-yank-ea7429e3df58a3d6a4bb input:not([type="checkbox"]):not([type="radio"]),
#contato-site-yank-ea7429e3df58a3d6a4bb select {
    display: block !important;

    width: 500px !important;
    max-width: 500px !important;

    height: 48px !important;
    min-height: 48px !important;

    margin: 0 !important;
    padding: 12px 15px !important;

    box-sizing: border-box !important;

    background: #fff !important;

    border: 1px solid #d1d1d1 !important;
    border-radius: 6px !important;

    color: #333 !important;

    font-family: 'Open Sans', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;

    outline: none !important;
    box-shadow: none !important;
}

/* TELEFONE */
#contato-site-yank-ea7429e3df58a3d6a4bb .phone-input-group {
    display: flex !important;

    width: 500px !important;
    max-width: 500px !important;

    height: 48px !important;
    min-height: 48px !important;

    margin: 0 !important;
    padding: 0 !important;

    box-sizing: border-box !important;

    background: #fff !important;
    border: 1px solid #d1d1d1 !important;
    border-radius: 6px !important;
    overflow: hidden !important;
}

#contato-site-yank-ea7429e3df58a3d6a4bb .phone-input-group .phone {
    flex: 1 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
    height: 46px !important;

    margin: 0 !important;
    padding: 12px 15px !important;

    border: 0 !important;
    box-shadow: none !important;
}

#contato-site-yank-ea7429e3df58a3d6a4bb .phone-country,
#contato-site-yank-ea7429e3df58a3d6a4bb .select2-container {
    flex: 0 0 55px !important;
    width: 55px !important;
    max-width: 55px !important;
}

/* TEXTAREA */
#contato-site-yank-ea7429e3df58a3d6a4bb textarea {
    display: block !important;

    width: 500px !important;
    max-width: 500px !important;

    height: 120px !important;
    min-height: 120px !important;

    margin: 0 !important;
    padding: 12px 15px !important;

    box-sizing: border-box !important;

    background: #fff !important;
    border: 1px solid #d1d1d1 !important;
    border-radius: 6px !important;

    color: #333 !important;

    font-family: 'Open Sans', sans-serif !important;
    font-size: 16px !important;

    outline: none !important;
    resize: vertical !important;
}

/* CHECKBOX */
#contato-site-yank-ea7429e3df58a3d6a4bb input[type="checkbox"] {
    width: 14px !important;
    height: 14px !important;
    margin: 0 6px 0 0 !important;
    accent-color: #000 !important;
}

/* BOTÃO */
#contato-site-yank-ea7429e3df58a3d6a4bb button,
#contato-site-yank-ea7429e3df58a3d6a4bb input[type="submit"],
#contato-site-yank-ea7429e3df58a3d6a4bb .bricks--component-button {
    display: block !important;

    width: 500px !important;
    max-width: 500px !important;

    height: 55px !important;
    min-height: 55px !important;

    margin: 8px 0 0 !important;
    padding: 15px 20px !important;

    box-sizing: border-box !important;

    background: #000 !important;
    color: #fff !important;

    border: none !important;
    border-radius: 7px !important;

    font-family: 'Open Sans', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;

    cursor: pointer !important;
    transform: none !important;
}

#contato-site-yank-ea7429e3df58a3d6a4bb input::placeholder,
#contato-site-yank-ea7429e3df58a3d6a4bb textarea::placeholder {
    color: #999 !important;
    opacity: 1 !important;
}

/* MOBILE */
@media (max-width: 900px) {

    #contato {
        flex-direction: column !important;
    }

    #contato .contact-left,
    #contato .contact-right {
        width: 100% !important;
        flex: 0 0 100% !important;
        min-width: 0 !important;
        min-height: auto !important;
    }

    #contato .contact-left {
        padding: 60px 8vw !important;
    }

    #contato .contact-right {
        padding: 70px 8vw !important;
    }

    #contato .contact-right > div,
    #contato .contact-right .section-title,
    #contato .contact-right .section-subtitle,
    #contato-site-yank-ea7429e3df58a3d6a4bb,
    #contato-site-yank-ea7429e3df58a3d6a4bb [id^="rd-section-"],
    #contato-site-yank-ea7429e3df58a3d6a4bb [id^="rd-row-"],
    #contato-site-yank-ea7429e3df58a3d6a4bb [id^="rd-column-"],
    #contato-site-yank-ea7429e3df58a3d6a4bb .rd-form,
    #contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form,
    #contato-site-yank-ea7429e3df58a3d6a4bb form,
    #contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form__field,
    #contato-site-yank-ea7429e3df58a3d6a4bb label,
    #contato-site-yank-ea7429e3df58a3d6a4bb input:not([type="checkbox"]):not([type="radio"]),
    #contato-site-yank-ea7429e3df58a3d6a4bb select,
    #contato-site-yank-ea7429e3df58a3d6a4bb textarea,
    #contato-site-yank-ea7429e3df58a3d6a4bb button,
    #contato-site-yank-ea7429e3df58a3d6a4bb input[type="submit"] {
        width: 100% !important;
        max-width: 500px !important;
        min-width: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    #contato .contact-right > div {
        margin-left: auto !important;
    }
}


/* =========================================================
   AJUSTE FINO — MENSAGENS E ESPAÇAMENTO
   ========================================================= */

#yank-email-success,
#yank-email-error {
    width: 500px !important;
    max-width: 500px !important;
    margin: 18px 0 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    line-height: 1.45 !important;
}

#yank-email-success:empty,
#yank-email-error:empty {
    display: none !important;
}


/* =========================================================
   CONTATO — FORMATAÇÃO DA REFERÊNCIA 142252
   Não altera o footer nem as demais seções.
   ========================================================= */

#contato .contact-right {
    width: 65% !important;
    flex: 0 0 65% !important;

    padding: 68px 0 70px 60px !important;

    display: block !important;
    box-sizing: border-box !important;
}

/* Bloco principal do contato: 500px */
#contato .contact-right > div {
    width: 500px !important;
    max-width: 500px !important;

    margin: 0 !important;
    padding: 0 !important;

    box-sizing: border-box !important;
}

/* Título exatamente no eixo esquerdo dos campos */
#contato .contact-right .section-title {
    width: 500px !important;
    max-width: 500px !important;

    margin: 0 0 10px !important;
    padding: 0 !important;

    text-align: left !important;

    font-family: 'Open Sans', sans-serif !important;
    font-size: 2.5rem !important;
    line-height: 1.15 !important;
    font-weight: 800 !important;

    color: #333 !important;
    background: none !important;
    -webkit-text-fill-color: #333 !important;
}

/* Subtítulo centralizado dentro dos 500px */
#contato .contact-right .section-subtitle {
    width: 500px !important;
    max-width: 500px !important;

    margin: 0 0 40px !important;
    padding: 0 !important;

    text-align: center !important;

    font-family: 'Open Sans', sans-serif !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    font-weight: 400 !important;

    color: #777 !important;
}

/* RD: exatamente 500px */
#contato-site-yank-ea7429e3df58a3d6a4bb {
    width: 500px !important;
    max-width: 500px !important;
    min-width: 500px !important;

    margin: 0 !important;
    padding: 0 !important;

    box-sizing: border-box !important;
}

/* Espaçamento vertical dos campos */
#contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form__field {
    width: 500px !important;
    max-width: 500px !important;

    margin: 0 0 22px !important;
    padding: 0 !important;

    box-sizing: border-box !important;
}

/* Labels da referência */
#contato-site-yank-ea7429e3df58a3d6a4bb label,
#contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form__label {
    width: 500px !important;
    max-width: 500px !important;

    margin: 0 0 8px !important;
    padding: 0 !important;

    font-family: 'Open Sans', sans-serif !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;

    color: #222 !important;
}

/* Campos */
#contato-site-yank-ea7429e3df58a3d6a4bb input:not([type="checkbox"]):not([type="radio"]),
#contato-site-yank-ea7429e3df58a3d6a4bb select {
    width: 500px !important;
    max-width: 500px !important;

    height: 48px !important;
    min-height: 48px !important;

    padding: 12px 15px !important;
    margin: 0 !important;

    box-sizing: border-box !important;

    border: 1px solid #d1d1d1 !important;
    border-radius: 6px !important;

    background: #fff !important;
    color: #333 !important;

    font-family: 'Open Sans', sans-serif !important;
    font-size: 16px !important;
    font-weight: 400 !important;
}

/* Telefone */
#contato-site-yank-ea7429e3df58a3d6a4bb .phone-input-group {
    width: 500px !important;
    max-width: 500px !important;
    height: 48px !important;

    margin: 0 !important;
    padding: 0 !important;

    box-sizing: border-box !important;

    border: 1px solid #d1d1d1 !important;
    border-radius: 6px !important;

    background: #fff !important;
    overflow: hidden !important;
}

/* Textarea da referência */
#contato-site-yank-ea7429e3df58a3d6a4bb textarea {
    width: 500px !important;
    max-width: 500px !important;

    height: 120px !important;
    min-height: 120px !important;

    margin: 0 !important;
    padding: 12px 15px !important;

    box-sizing: border-box !important;

    border: 1px solid #d1d1d1 !important;
    border-radius: 6px !important;

    font-family: 'Open Sans', sans-serif !important;
    font-size: 16px !important;
}

/* Checkbox */
#contato-site-yank-ea7429e3df58a3d6a4bb input[type="checkbox"] {
    width: 14px !important;
    height: 14px !important;
    margin: 0 6px 0 0 !important;
}

/* Botão */
#contato-site-yank-ea7429e3df58a3d6a4bb button,
#contato-site-yank-ea7429e3df58a3d6a4bb input[type="submit"],
#contato-site-yank-ea7429e3df58a3d6a4bb .bricks--component-button {
    width: 500px !important;
    max-width: 500px !important;

    height: 56px !important;
    min-height: 56px !important;

    margin: 8px 0 0 !important;
    padding: 15px 20px !important;

    box-sizing: border-box !important;

    background: #000 !important;
    color: #fff !important;

    border: 0 !important;
    border-radius: 7px !important;

    font-family: 'Open Sans', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
}

/* Mensagens */
#yank-email-success,
#yank-email-error {
    width: 500px !important;
    max-width: 500px !important;

    margin: 18px 0 0 !important;
    padding: 0 !important;

    line-height: 1.45 !important;
}

/* Responsivo */
@media (max-width: 900px) {
    #contato .contact-right {
        width: 100% !important;
        flex: 0 0 100% !important;
        padding: 60px 8vw !important;
    }

    #contato .contact-right > div,
    #contato .contact-right .section-title,
    #contato .contact-right .section-subtitle,
    #contato-site-yank-ea7429e3df58a3d6a4bb,
    #contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form__field,
    #contato-site-yank-ea7429e3df58a3d6a4bb label,
    #contato-site-yank-ea7429e3df58a3d6a4bb input:not([type="checkbox"]):not([type="radio"]),
    #contato-site-yank-ea7429e3df58a3d6a4bb select,
    #contato-site-yank-ea7429e3df58a3d6a4bb textarea,
    #contato-site-yank-ea7429e3df58a3d6a4bb button,
    #contato-site-yank-ea7429e3df58a3d6a4bb input[type="submit"] {
        width: 100% !important;
        max-width: 500px !important;
        min-width: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    #contato .contact-right .section-title {
        text-align: left !important;
    }
}



/* =========================================================
   CONTATO — APROXIMAÇÃO VERTICAL À SEGUNDA REFERÊNCIA
   ========================================================= */

/* O ponto a corrigir é o espaço entre o subtítulo e o primeiro campo.
   Os espaçamentos entre os campos já estão próximos da referência. */
#contato .contact-right .section-subtitle {
    margin-bottom: 8px !important;
}

/* Neutraliza possíveis margens/paddings internos criados pelo RD */
#contato-site-yank-ea7429e3df58a3d6a4bb > *,
#contato-site-yank-ea7429e3df58a3d6a4bb .rd-section,
#contato-site-yank-ea7429e3df58a3d6a4bb .rd-row,
#contato-site-yank-ea7429e3df58a3d6a4bb .rd-column,
#contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Espaçamento vertical entre campos conforme a segunda imagem */
#contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form__field {
    margin-bottom: 18px !important;
}

/* Último campo fica mais próximo do botão */
#contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form__field:last-of-type {
    margin-bottom: 10px !important;
}

/* Botão */
#contato-site-yank-ea7429e3df58a3d6a4bb button,
#contato-site-yank-ea7429e3df58a3d6a4bb input[type="submit"],
#contato-site-yank-ea7429e3df58a3d6a4bb .bricks--component-button {
    margin-top: 4px !important;
}

/* =========================================================
   FOOTER — RESTAURADO AO PADRÃO ORIGINAL DA YANK
   ========================================================= */

.clean-footer {
    background-color: #050505 !important;
    padding: 40px 5vw !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 10 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.clean-footer .footer-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 20px !important;

    position: static !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

.clean-footer .footer-logo {
    display: block !important;
    position: static !important;
    margin: 0 !important;
    padding: 0 !important;
}

.clean-footer .footer-logo img {
    display: block !important;
    width: auto !important;
    max-width: 180px !important;
    height: auto !important;
    margin: 0 !important;
}

.clean-footer .footer-copy {
    position: static !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0.9rem !important;
    color: #777 !important;
    text-align: center !important;
}

.clean-footer .footer-links {
    position: static !important;
    margin: 0 !important;
    padding: 0 !important;
}

.clean-footer .footer-links a {
    color: #ccc !important;
    text-decoration: none !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
}

@media (max-width: 768px) {
    .clean-footer {
        padding: 40px 5vw !important;
    }

    .clean-footer .footer-content {
        flex-direction: column !important;
        text-align: center !important;
    }

    .clean-footer .footer-logo,
    .clean-footer .footer-copy,
    .clean-footer .footer-links {
        width: 100% !important;
        text-align: center !important;
    }

    .clean-footer .footer-logo img {
        margin: 0 auto !important;
    }
}

.clean-footer {
    background-color: #050505 !important;
    min-height: 141px;
}


/* =========================================================
   CONTATO — COMPACTO / SEM MENSAGENS EXTRAS
   Ajuste final sobre styles6.css
   ========================================================= */

/* Remove o grande vazio vertical da seção */
#contato {
    min-height: 0 !important;
    height: auto !important;
    padding: 0 !important;
}

/* Painel amarelo acompanha apenas a altura real do conteúdo */
#contato .contact-left {
    min-height: 0 !important;
    height: auto !important;
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

/* Painel branco também fica compacto */
#contato .contact-right {
    min-height: 0 !important;
    height: auto !important;
    padding-top: 45px !important;
    padding-bottom: 45px !important;
}

/* Aproxima título, subtítulo e formulário */
#contato .contact-right .section-title {
    margin-bottom: 6px !important;
}

#contato .contact-right .section-subtitle {
    margin-bottom: 18px !important;
}

/* Reduz o espaço entre cada campo */
#contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form__field {
    margin-bottom: 12px !important;
}

/* Último campo e botão ficam bem próximos */
#contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form__field:last-of-type {
    margin-bottom: 6px !important;
}

#contato-site-yank-ea7429e3df58a3d6a4bb button,
#contato-site-yank-ea7429e3df58a3d6a4bb input[type="submit"],
#contato-site-yank-ea7429e3df58a3d6a4bb .bricks--component-button {
    margin-top: 4px !important;
}

/* Remove as mensagens customizadas que aparecem abaixo do formulário */
#yank-email-success,
#yank-email-error {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    visibility: hidden !important;
}

/* Remove o texto estático de anti-SPAM/rodapé do RD, mantendo os campos */
#contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form__static-text,
#contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form__field__static,
#contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form__static {
    display: none !important;
}

/* Também elimina margens vazias deixadas por esses blocos */
#contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form__field:has(.bricks-form__static-text),
#contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form__field:has(.bricks-form__field__static) {
    margin: 0 !important;
    padding: 0 !important;
    min-height: 0 !important;
}

/* Mobile */
@media (max-width: 900px) {
    #contato,
    #contato .contact-left,
    #contato .contact-right {
        min-height: 0 !important;
        height: auto !important;
    }

    #contato .contact-left {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    #contato .contact-right {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }
}


/* =========================================================
   YANK — CONTATO / REFERÊNCIA EXATA 145958
   ÚLTIMO BLOCO — sobrescreve somente o contato
   ========================================================= */

/* A seção termina logo antes do footer */
#contato {
    width: 100% !important;
    /*height: calc(100vh - 43px) !important;*/
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    justify-content: flex-start !important;

    background: #fff !important;
    box-sizing: border-box !important;
}

/* =========================================================
   PAINEL AMARELO
   ========================================================= */

#contato .contact-left {
    width: 34.75% !important;
    flex: 0 0 34.75% !important;
    /*min-width: 0 !important;
    height: 100% !important;
    min-height: 0 !important;*/

    padding: 0 0 0 88px !important;
    margin: 0 !important;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;

    background: #dddd37 !important;
    color: #000 !important;
    box-sizing: border-box !important;
}

/* Bloco amarelo no mesmo eixo vertical da referência */
#contato .contact-left > div {
    margin: 0 !important;
    padding: 0 !important;
    transform: translateY(-58px) !important;
}

#contato .contact-left h3 {
    margin: 0 0 5px !important;
    font-size: 1.8rem !important;
    line-height: 1.1 !important;
    font-weight: 800 !important;
}

#contato .contact-left p {
    margin: 0 0 40px !important;
    font-size: 1.1rem !important;
    line-height: 1.2 !important;
    font-weight: 600 !important;
}

#contato .contact-left .social-icons {
    margin: 0 0 10px !important;
}

/* =========================================================
   PAINEL BRANCO
   ========================================================= */

#contato .contact-right {
    width: 65.25% !important;
    flex: 0 0 65.25% !important;
    min-width: 0 !important;
    height: 100% !important;
    min-height: 0 !important;

    padding: 24px 0 0 152px !important;
    margin: 0 !important;

    display: block !important;

    background: #fff !important;
    box-sizing: border-box !important;
}

/* Bloco exato de 500px */
#contato .contact-right > div {
    width: 500px !important;
    max-width: 500px !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* =========================================================
   TÍTULO
   ========================================================= */

#contato .contact-right .section-title {
    width: 500px !important;
    max-width: 500px !important;

    margin: 0 0 6px !important;
    padding: 0 !important;

    text-align: center !important;

    font-family: 'Open Sans', sans-serif !important;
    font-size: 2.5rem !important;
    line-height: 1.08 !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;

    color: #333 !important;
    background: none !important;
    -webkit-text-fill-color: #333 !important;
}

/* Subtítulo */
#contato .contact-right .section-subtitle {
    width: 500px !important;
    max-width: 500px !important;

    margin: 0 0 42px !important;
    padding: 0 !important;

    text-align: center !important;

    font-family: 'Open Sans', sans-serif !important;
    font-size: 1rem !important;
    line-height: 1.35 !important;
    font-weight: 400 !important;

    color: #777 !important;
}

/* =========================================================
   RD STATION — TAMANHO E ESPAÇAMENTO
   ========================================================= */

#contato-site-yank-ea7429e3df58a3d6a4bb {
    width: 500px !important;
    max-width: 500px !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    box-sizing: border-box !important;
}

/* Zera espaços automáticos do RD */
#contato-site-yank-ea7429e3df58a3d6a4bb > *,
#contato-site-yank-ea7429e3df58a3d6a4bb [id^="rd-section-"],
#contato-site-yank-ea7429e3df58a3d6a4bb [id^="rd-row-"],
#contato-site-yank-ea7429e3df58a3d6a4bb [id^="rd-column-"],
#contato-site-yank-ea7429e3df58a3d6a4bb .rd-form,
#contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form,
#contato-site-yank-ea7429e3df58a3d6a4bb form {
    width: 500px !important;
    max-width: 500px !important;
    margin: 0 !important;
    padding-top: 0 !important;
    box-sizing: border-box !important;
}

/* Campo */
#contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form__field {
    width: 500px !important;
    max-width: 500px !important;

    margin: 0 0 16px !important;
    padding: 0 !important;

    box-sizing: border-box !important;
}

/* Label */
#contato-site-yank-ea7429e3df58a3d6a4bb label,
#contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form__label {
    width: 500px !important;
    max-width: 500px !important;

    margin: 0 0 7px !important;
    padding: 0 !important;

    font-family: 'Open Sans', sans-serif !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;

    color: #222 !important;
}

/* Inputs e select */
#contato-site-yank-ea7429e3df58a3d6a4bb input:not([type="checkbox"]):not([type="radio"]),
#contato-site-yank-ea7429e3df58a3d6a4bb select {
    width: 500px !important;
    max-width: 500px !important;

    height: 48px !important;
    min-height: 48px !important;

    margin: 0 !important;
    padding: 12px 15px !important;

    box-sizing: border-box !important;

    background: #fff !important;
    border: 1px solid #d1d1d1 !important;
    border-radius: 6px !important;

    color: #333 !important;
    font-family: 'Open Sans', sans-serif !important;
    font-size: 16px !important;
}

/* Telefone */
#contato-site-yank-ea7429e3df58a3d6a4bb .phone-input-group {
    width: 500px !important;
    max-width: 500px !important;

    height: 48px !important;
    min-height: 48px !important;

    margin: 0 !important;
    padding: 0 !important;

    box-sizing: border-box !important;

    border: 1px solid #d1d1d1 !important;
    border-radius: 6px !important;
    background: #fff !important;
    overflow: hidden !important;
}

#contato-site-yank-ea7429e3df58a3d6a4bb .phone-input-group .phone {
    height: 46px !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 12px 15px !important;

    border: 0 !important;
    box-shadow: none !important;
}

#contato-site-yank-ea7429e3df58a3d6a4bb .phone-country,
#contato-site-yank-ea7429e3df58a3d6a4bb .select2-container {
    width: 55px !important;
    max-width: 55px !important;
}

/* Textarea */
#contato-site-yank-ea7429e3df58a3d6a4bb textarea {
    width: 500px !important;
    max-width: 500px !important;

    height: 120px !important;
    min-height: 120px !important;

    margin: 0 !important;
    padding: 12px 15px !important;

    box-sizing: border-box !important;

    background: #fff !important;
    border: 1px solid #d1d1d1 !important;
    border-radius: 6px !important;

    color: #333 !important;
    font-family: 'Open Sans', sans-serif !important;
    font-size: 16px !important;

    resize: vertical !important;
}

/* =========================================================
   REMOVER ELEMENTOS QUE NÃO EXISTEM NA REFERÊNCIA
   ========================================================= */

#contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form__field__option,
#contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form__static-text,
#contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form__field__static,
#contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form__static,
#yank-email-success,
#yank-email-error {
    display: none !important;
    visibility: hidden !important;

    height: 0 !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;
}

/* Botão */
#contato-site-yank-ea7429e3df58a3d6a4bb button,
#contato-site-yank-ea7429e3df58a3d6a4bb input[type="submit"],
#contato-site-yank-ea7429e3df58a3d6a4bb .bricks--component-button {
    width: 500px !important;
    max-width: 500px !important;

    height: 56px !important;
    min-height: 56px !important;

    margin: 4px 0 0 !important;
    padding: 15px 20px !important;

    box-sizing: border-box !important;

    background: #000 !important;
    color: #fff !important;

    border: 0 !important;
    border-radius: 7px !important;

    font-family: 'Open Sans', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;

    transform: none !important;
}

/* Mobile */
@media (max-width: 900px) {
    #contato {
        height: auto !important;
        flex-direction: column !important;
    }

    #contato .contact-left,
    #contato .contact-right {
        width: 100% !important;
        flex: 0 0 100% !important;
        height: auto !important;
        min-height: 0 !important;
    }

    #contato .contact-left {
        padding: 50px 8vw !important;
    }

    #contato .contact-left > div {
        transform: none !important;
    }

    #contato .contact-right {
        padding: 35px 8vw 45px !important;
    }

    #contato .contact-right > div,
    #contato .contact-right .section-title,
    #contato .contact-right .section-subtitle,
    #contato-site-yank-ea7429e3df58a3d6a4bb,
    #contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form__field,
    #contato-site-yank-ea7429e3df58a3d6a4bb label,
    #contato-site-yank-ea7429e3df58a3d6a4bb input:not([type="checkbox"]):not([type="radio"]),
    #contato-site-yank-ea7429e3df58a3d6a4bb select,
    #contato-site-yank-ea7429e3df58a3d6a4bb textarea,
    #contato-site-yank-ea7429e3df58a3d6a4bb button,
    #contato-site-yank-ea7429e3df58a3d6a4bb input[type="submit"] {
        width: 100% !important;
        max-width: 500px !important;
        min-width: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}
/* =========================================================
   YANK — RESPONSIVIDADE FINAL
   Somente adapta dimensões/layout. Efeitos e animações originais
   permanecem ativos.
   ========================================================= */

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

img, video, svg {
    max-width: 100%;
}

@media (max-width: 1100px) {
    header {
        padding-left: 28px !important;
        padding-right: 28px !important;
    }

    section {
        padding-left: 28px;
        padding-right: 28px;
    }

    .container {
        width: 100%;
        max-width: 100%;
    }

    .work-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .live-marketing-grid {
        grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
        gap: 42px;
    }
}

@media (max-width: 900px) {
    /* HEADER — permanece fixo; apenas reorganiza o espaço */
    header {
        width: 100%;
        min-height: 0;
        padding: 14px 15px !important;
        gap: 10px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .logo {
        flex: 0 0 auto;
    }

    .logo img {
        display: block;
        width: auto;
        height: 32px;
        max-width: min(190px, 48vw);
        object-fit: contain;
    }

    header nav {
        width: 100%;
        max-width: 100%;
        margin: 0;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    header nav::-webkit-scrollbar {
        display: none;
    }

    nav ul {
        width: max-content;
        min-width: 100%;
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 22px;
        padding: 2px 4px 5px;
    }

    nav ul li {
        flex: 0 0 auto;
    }

    nav ul li a {
        display: inline-block;
        white-space: nowrap;
        font-size: 11px;
        letter-spacing: .7px;
    }

    /* TODAS AS SEÇÕES */
    section {
        width: 100%;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-title {
        font-size: clamp(2rem, 7vw, 3rem);
        line-height: 1.1;
    }

    /* HOME */
    #home {
        width: 100%;
        min-height: 100svh;
    }

    /* ABOUT */
    #about {
        width: 100%;
        padding-top: 0;
        padding-bottom: 60px;
    }

    #about .container {
        width: 100%;
        max-width: 100%;
    }

    .logo-ticker-wrapper {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        margin-top: 78px;
        margin-bottom: 48px;
    }

    .logo-item {
        width: clamp(150px, 30vw, 210px);
        flex: 0 0 clamp(150px, 30vw, 210px);
        padding: 0 12px;
    }

    .logo-item img {
        width: auto;
        max-width: 100%;
        max-height: 65px;
        object-fit: contain;
    }

    .welcome-image {
        display: block;
        width: min(100%, 520px);
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }

    .about-columns {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 15px;
    }

    .about-columns p {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* WORK — mantém perspective, hover, projected-image e borda animada */
    #work {
        width: 100%;
        padding: 90px 20px 60px;
    }

    #work .container {
        width: 100%;
        max-width: 100%;
    }

    #work .section-title {
        width: 100%;
        font-size: clamp(2rem, 7vw, 2.8rem);
        line-height: 1.1;
        margin-bottom: 24px;
    }

    .work-description {
        width: 100%;
        max-width: 850px;
        font-size: clamp(.95rem, 2.5vw, 1.1rem);
        line-height: 1.65;
        margin-bottom: 32px;
    }

    .work-grid {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .work-card-wrapper {
        width: 100%;
        min-width: 0;
        height: clamp(350px, 48vw, 420px);
        perspective: 1200px;
        overflow: visible;
    }

    .insta-card {
        width: 100%;
        min-width: 0;
        padding: clamp(18px, 3vw, 25px);
    }

    .insta-body {
        min-width: 0;
    }

    .insta-body h3 {
        font-size: clamp(1.25rem, 3vw, 1.6rem);
    }

    .insta-body p {
        max-width: 100%;
        font-size: clamp(.78rem, 1.8vw, .9rem);
    }

    .projected-image {
        width: 85%;
        max-width: 85%;
        height: clamp(150px, 22vw, 200px);
    }

    /* LIVE MARKETING */
    #live-marketing {
        width: 100%;
        padding: 90px 20px 0;
    }

    #live-marketing .container {
        width: 100%;
        max-width: 100%;
    }

    #live-marketing .section-title {
        width: 100%;
        font-size: clamp(2rem, 7vw, 3rem);
        line-height: 1.1;
        margin-bottom: 30px;
    }

    .live-marketing-grid {
        width: 100%;
        grid-template-columns: minmax(250px, 360px) minmax(0, 1fr);
        gap: 32px;
        align-items: center;
    }

    .live-card-wrapper {
        width: 100%;
        min-width: 0;
    }

    .insta-card-yellow {
        width: 100%;
        height: clamp(400px, 52vw, 480px);
        min-width: 0;
    }

    .live-text-col {
        width: 100%;
        min-width: 0;
    }

    .live-text-col p {
        font-size: clamp(.95rem, 2.4vw, 1.1rem);
        line-height: 1.7;
    }

    .photo-ticker-wrapper {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .photo-item {
        width: clamp(280px, 42vw, 380px);
        height: clamp(185px, 28vw, 250px);
        flex: 0 0 clamp(280px, 42vw, 380px);
    }

    /* CONTATO — duas colunas viram blocos, formulário fica fluido */
    #contato {
        width: 100%;
        max-width: 100%;
        min-height: auto;
        height: auto;
        flex-direction: column;
        align-items: stretch;
    }

    #contato .contact-left,
    #contato .contact-right {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        flex: 0 0 auto;
    }

    #contato .contact-left {
        min-height: 330px;
        padding: 65px 25px;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    #contato .contact-left > div,
    #contato .contact-right > div {
        width: 100%;
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
    }

    #contato .social-icons {
        justify-content: center;
    }

    #contato .contact-right {
        padding: 60px 25px 70px;
        display: flex;
        justify-content: center;
    }

    #contato .contact-right .section-title,
    #contato .contact-right .section-subtitle {
        width: 100%;
        max-width: 620px;
    }

    #contato .contact-right .section-title {
        font-size: clamp(2rem, 7vw, 2.8rem);
        line-height: 1.1;
    }

    #contato-site-yank-ea7429e3df58a3d6a4bb,
    #contato-site-yank-ea7429e3df58a3d6a4bb form,
    #contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form,
    #contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form__field,
    #contato-site-yank-ea7429e3df58a3d6a4bb input,
    #contato-site-yank-ea7429e3df58a3d6a4bb select,
    #contato-site-yank-ea7429e3df58a3d6a4bb textarea,
    #contato-site-yank-ea7429e3df58a3d6a4bb button,
    #contato-site-yank-ea7429e3df58a3d6a4bb input[type="submit"] {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    #contato-site-yank-ea7429e3df58a3d6a4bb .phone-input-group,
    #contato-site-yank-ea7429e3df58a3d6a4bb .select2-container {
        max-width: 100% !important;
    }

    /* FOOTER */
    .clean-footer {
        width: 100%;
        padding: 30px 20px;
    }

    .footer-content {
        width: 100%;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 18px;
    }

    .footer-logo img {
        width: min(170px, 55vw);
        height: auto;
    }
}

@media (max-width: 600px) {
    header {
        padding: 12px 12px !important;
    }

    .logo img {
        height: 29px;
        max-width: 155px;
    }

    nav ul {
        justify-content: flex-start;
        gap: 18px;
    }

    nav ul li a {
        font-size: 10px;
        letter-spacing: .55px;
    }

    section {
        padding-left: 16px;
        padding-right: 16px;
    }

    #home {
        min-height: 100svh;
    }

    #about {
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 45px;
    }

    .logo-ticker-wrapper {
        margin-top: 68px;
        margin-bottom: 38px;
        padding: 14px 0;
    }

    .logo-item {
        width: 155px;
        flex-basis: 155px;
        padding: 0 10px;
    }

    .logo-item img {
        max-width: 135px;
        max-height: 58px;
    }

    .welcome-image {
        width: min(88vw, 360px);
    }

    .about-columns {
        margin-top: 10px;
    }

    .about-columns p {
        font-size: .96rem;
        line-height: 1.65;
    }

    #work {
        padding: 82px 16px 55px;
    }

    #work .section-title {
        font-size: 2rem;
    }

    .work-description {
        font-size: .94rem;
        line-height: 1.6;
        margin-bottom: 28px;
    }

    .work-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .work-card-wrapper {
        height: 405px;
    }

    .insta-card {
        padding: 21px;
    }

    .insta-body h3 {
        font-size: 1.5rem;
    }

    .insta-body p {
        font-size: .86rem;
    }

    .projected-image {
        width: 86%;
        height: 180px;
    }

    #live-marketing {
        padding: 82px 16px 0;
    }

    #live-marketing .section-title {
        font-size: 2rem;
        margin-bottom: 28px;
    }

    .live-marketing-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 45px;
    }

    .live-card-wrapper {
        width: min(100%, 380px);
        margin-left: auto;
        margin-right: auto;
    }

    .insta-card-yellow {
        height: 425px;
    }

    .live-text-col p {
        font-size: .96rem;
        line-height: 1.65;
    }

    .photo-item {
        width: 280px;
        height: 188px;
        flex-basis: 280px;
    }

    #contato .contact-left {
        min-height: 300px;
        padding: 55px 20px 48px;
    }

    #contato .contact-right {
        padding: 45px 16px 55px;
    }

    #contato .contact-right .section-subtitle {
        font-size: .94rem;
        margin-bottom: 28px;
    }

    .clean-footer {
        padding: 28px 16px;
    }
}

@media (max-width: 380px) {
    .logo img {
        height: 27px;
        max-width: 140px;
    }

    nav ul {
        gap: 15px;
    }

    nav ul li a {
        font-size: 9.5px;
    }

    .work-card-wrapper {
        height: 390px;
    }

    .insta-card {
        padding: 18px;
    }

    .insta-body h3 {
        font-size: 1.38rem;
    }

    .insta-body p {
        font-size: .81rem;
    }

    .photo-item {
        width: 250px;
        height: 168px;
        flex-basis: 250px;
    }
}

/* =========================================================
   YANK — CORREÇÃO RESPONSIVA REAL / MOBILE
   Última camada: corrige somente layout em telas pequenas.
   Não remove hover, transitions, animations, perspective ou JS.
   ========================================================= */

@media (max-width: 900px) {
    html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
    }

    body {
        position: relative;
    }

    /* HEADER MOBILE: duas linhas estáveis, sem esmagar o logo */
    header#header {
        width: 100% !important;
        height: 82px !important;
        min-height: 82px !important;
        padding: 7px 12px 5px !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 3px !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    header#header .logo {
        width: 100% !important;
        height: 36px !important;
        flex: 0 0 36px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 !important;
    }

    header#header .logo img {
        display: block !important;
        width: auto !important;
        height: 31px !important;
        max-width: 165px !important;
        max-height: 31px !important;
        object-fit: contain !important;
        margin: 0 auto !important;
    }

    header#header nav {
        display: block !important;
        width: 100% !important;
        height: 34px !important;
        flex: 0 0 34px !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    header#header nav::-webkit-scrollbar {
        display: none !important;
    }

    header#header nav ul {
        width: max-content !important;
        min-width: 100% !important;
        height: 34px !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 18px !important;
        margin: 0 !important;
        padding: 0 6px !important;
        list-style: none !important;
    }

    header#header nav ul li {
        flex: 0 0 auto !important;
        white-space: nowrap !important;
    }

    header#header nav ul li a {
        display: inline-block !important;
        white-space: nowrap !important;
        font-size: 10px !important;
        line-height: 22px !important;
        letter-spacing: .55px !important;
        padding: 2px 0 !important;
    }

    /* O conteúdo começa abaixo do header sem criar barra lateral */
    section,
    .container {
        max-width: 100% !important;
    }

    /* =====================================================
       CONTATO — correção do corte do RD Station
       ===================================================== */

    #contato {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: auto !important;
        min-height: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        overflow: visible !important;
        padding: 0 !important;
    }

    #contato .contact-left,
    #contato .contact-right {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        flex: 0 0 auto !important;
        box-sizing: border-box !important;
    }

    #contato .contact-left {
        min-height: 0 !important;
        padding: 48px 20px !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    #contato .contact-left > div {
        width: 100% !important;
        max-width: 420px !important;
        min-width: 0 !important;
        margin: 0 auto !important;
        transform: none !important;
    }

    #contato .contact-right {
        display: block !important;
        padding: 36px 20px 48px !important;
        overflow: visible !important;
    }

    #contato .contact-right > div {
        display: block !important;
        width: 100% !important;
        max-width: 560px !important;
        min-width: 0 !important;
        margin: 0 auto !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    #contato .contact-right .section-title,
    #contato .contact-right .section-subtitle {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    #contato .contact-right .section-title {
        font-size: clamp(1.9rem, 8vw, 2.5rem) !important;
        line-height: 1.1 !important;
        text-align: left !important;
        margin: 0 0 7px !important;
    }

    #contato .contact-right .section-subtitle {
        font-size: .92rem !important;
        line-height: 1.5 !important;
        text-align: left !important;
        margin: 0 0 24px !important;
    }

    /* Container principal do RD */
    #contato-site-yank-ea7429e3df58a3d6a4bb {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }

    /* Todas as camadas que o RD cria */
    #contato-site-yank-ea7429e3df58a3d6a4bb > *,
    #contato-site-yank-ea7429e3df58a3d6a4bb [id^="rd-section-"],
    #contato-site-yank-ea7429e3df58a3d6a4bb [id^="rd-row-"],
    #contato-site-yank-ea7429e3df58a3d6a4bb [id^="rd-column-"],
    #contato-site-yank-ea7429e3df58a3d6a4bb .rd-section,
    #contato-site-yank-ea7429e3df58a3d6a4bb .rd-row,
    #contato-site-yank-ea7429e3df58a3d6a4bb .rd-column,
    #contato-site-yank-ea7429e3df58a3d6a4bb .rd-form,
    #contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form,
    #contato-site-yank-ea7429e3df58a3d6a4bb form {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }

    /* Campos RD */
    #contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form__field {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 0 16px !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        background: transparent !important;
    }

    #contato-site-yank-ea7429e3df58a3d6a4bb label,
    #contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form__label {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 0 7px !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        font-size: 14px !important;
        line-height: 1.3 !important;
    }

    #contato-site-yank-ea7429e3df58a3d6a4bb input:not([type="checkbox"]):not([type="radio"]),
    #contato-site-yank-ea7429e3df58a3d6a4bb select,
    #contato-site-yank-ea7429e3df58a3d6a4bb textarea {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    #contato-site-yank-ea7429e3df58a3d6a4bb input:not([type="checkbox"]):not([type="radio"]),
    #contato-site-yank-ea7429e3df58a3d6a4bb select {
        height: 48px !important;
        min-height: 48px !important;
    }

    #contato-site-yank-ea7429e3df58a3d6a4bb textarea {
        height: 120px !important;
        min-height: 120px !important;
        max-height: none !important;
    }

    /* Telefone: país + número ocupam a mesma largura do formulário */
    #contato-site-yank-ea7429e3df58a3d6a4bb .phone-input-group {
        display: flex !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    #contato-site-yank-ea7429e3df58a3d6a4bb .phone-input-group .phone {
        flex: 1 1 auto !important;
        width: auto !important;
        max-width: none !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    #contato-site-yank-ea7429e3df58a3d6a4bb .phone-country,
    #contato-site-yank-ea7429e3df58a3d6a4bb .select2-container {
        flex: 0 0 55px !important;
        width: 55px !important;
        max-width: 55px !important;
        min-width: 55px !important;
    }

    /* Botão nunca ultrapassa o viewport */
    #contato-site-yank-ea7429e3df58a3d6a4bb button,
    #contato-site-yank-ea7429e3df58a3d6a4bb input[type="submit"],
    #contato-site-yank-ea7429e3df58a3d6a4bb .bricks--component-button {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    /* Texto legal do RD também fica dentro da tela */
    #contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form__static-text,
    #contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form__field__static,
    #contato-site-yank-ea7429e3df58a3d6a4bb .bricks-form__static {
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-wrap: anywhere !important;
    }
}

@media (max-width: 600px) {
    header#header {
        height: 78px !important;
        min-height: 78px !important;
        padding: 5px 8px 4px !important;
    }

    header#header .logo {
        height: 34px !important;
        flex-basis: 34px !important;
    }

    header#header .logo img {
        height: 29px !important;
        max-height: 29px !important;
        max-width: 155px !important;
    }

    header#header nav,
    header#header nav ul {
        height: 32px !important;
    }

    header#header nav ul {
        gap: 17px !important;
    }

    header#header nav ul li a {
        font-size: 9.5px !important;
        letter-spacing: .45px !important;
    }

    #contato .contact-left {
        padding: 42px 18px !important;
    }

    #contato .contact-right {
        padding: 30px 18px 42px !important;
    }

    #contato .contact-right .section-subtitle {
        margin-bottom: 22px !important;
    }
}

@media (max-width: 380px) {
    header#header {
        height: 76px !important;
        min-height: 76px !important;
    }

    header#header .logo img {
        height: 27px !important;
        max-height: 27px !important;
        max-width: 145px !important;
    }

    header#header nav ul {
        gap: 14px !important;
    }

    header#header nav ul li a {
        font-size: 9px !important;
    }

    #contato .contact-right {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}


/* =========================================================
   YANK — MENU HAMBURGUER MOBILE
   Desktop permanece exatamente com o menu original.
   ========================================================= */
.mobile-menu-toggle {
    display: none;
    position: relative;
    width: 44px;
    height: 44px;
    padding: 9px;
    margin: 0;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    background: rgba(0,0,0,.28);
    cursor: pointer;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    z-index: 1101;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: #ffffff;
    transition: transform .25s ease, opacity .2s ease, width .25s ease;
}

.mobile-menu-toggle:hover span {
    width: 25px;
}

.mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
    header#header {
        height: 70px !important;
        min-height: 70px !important;
        padding: 0 16px !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0 !important;
        overflow: visible !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
    }

    header#header .logo {
        width: auto !important;
        height: auto !important;
        flex: 0 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 !important;
    }

    header#header .logo img {
        width: auto !important;
        height: 34px !important;
        max-width: 185px !important;
        max-height: 34px !important;
        margin: 0 !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        position: absolute !important;
        right: 14px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }

    .mobile-menu-toggle.is-open {
        transform: translateY(-50%) !important;
    }

    header#header nav#main-navigation {
        position: absolute !important;
        top: 70px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: auto !important;
        max-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        background: rgba(12,12,12,.97) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        border-bottom: 1px solid var(--glass-border) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-8px) !important;
        transition: max-height .3s ease, opacity .2s ease, transform .3s ease, visibility .3s ease !important;
    }

    header#header nav#main-navigation.mobile-menu-open {
        max-height: 360px !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        padding: 8px 0 12px !important;
    }

    header#header nav#main-navigation ul,
    header#header nav#main-navigation.mobile-menu-open ul {
        width: 100% !important;
        min-width: 0 !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        align-items: stretch !important;
        gap: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    header#header nav#main-navigation ul li {
        width: 100% !important;
        flex: 0 0 auto !important;
        text-align: center !important;
    }

    header#header nav#main-navigation ul li a {
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px 20px !important;
        font-size: 12px !important;
        line-height: 1.2 !important;
        letter-spacing: .7px !important;
        white-space: nowrap !important;
    }

    header#header nav#main-navigation ul li a:hover {
        background: rgba(221,221,55,.08) !important;
    }
}

@media (max-width: 380px) {
    header#header {
        padding: 0 12px !important;
    }

    header#header .logo img {
        height: 31px !important;
        max-width: 165px !important;
    }

    .mobile-menu-toggle {
        right: 10px !important;
        width: 42px !important;
        height: 42px !important;
        flex-basis: 42px !important;
    }
}
