@font-face {
            font-family: 'Sink';
            src: url('srt/Sink.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }

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

        body {
            font-family: 'Montserrat', sans-serif;
            background: #fff;
            color: #000;
            overflow-x: hidden;
            font-weight: 500;
        }

        .sink {
            font-family: 'Sink', 'Bebas Neue', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .semibold { font-weight: 600; }

        /* STRIPES */
        .stripes {
            display: flex;
            height: 100px;
            width: 100%;
        }

        .stripes .stripe {
            flex: 1;
            height: 100%;
        }

        .stripe-blue { background: #00AEEF; }
        .stripe-green { background: #00D68F; }
        .stripe-yellow { background: #F2B705; }
        .stripe-orange { background: #FF7F00; }
        .stripe-black { background: #000000; }
        .stripe-red {
            background: #FF4136;
            position: relative;
            overflow: hidden;
        }

        .stripe-red::before,
        .stripe-red::after {
            content: '';
            position: absolute;
            left: -10%;
            width: 120%;
            height: 14px;
            background: #000;
            transform: rotate(-2deg);
        }

        .stripe-red::before { top: 38%; }
        .stripe-red::after { top: 62%; }

        /* HEADER - ALINHADO A ESQUERDA */
        .main-header {
            background: #000;
            color: #fff;
            text-align: left;
            padding: 35px 20px 45px;
            position: relative;
        }

        .main-header h1 {
            font-size: 3.8rem;
            letter-spacing: 4px;
            line-height: 1;
        }

        /* MENU HAMBURGUER SIMPLES COM JS */
        .menu-btn {
            position: absolute;
            top: 50%;
            right: 25px;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
            background: none;
            border: none;
            padding: 10px;
        }

        .menu-btn span {
            display: block;
            width: 28px;
            height: 3px;
            background: #fff;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* Animação do X quando menu aberto */
        .menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .menu-btn.active span:nth-child(2) {
            opacity: 0;
        }
        .menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* MENU OVERLAY */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            padding-top: 80px;
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .menu-overlay a {
            color: #fff;
            text-decoration: none;
            font-family: 'Sink', 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            letter-spacing: 3px;
            padding: 18px 40px;
            display: block;
            width: 100%;
            text-align: center;
            transition: all 0.3s ease;
            border-bottom: 1px solid #222;
        }

        .menu-overlay a:hover {
            background: #FF4136;
            color: #000;
        }

        .menu-overlay a:last-child {
            border-bottom: none;
        }

        .menu-social {
            display: flex;
            gap: 25px;
            margin-top: 40px;
        }

        .menu-social a {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            border: 2px solid #fff;
            padding: 10px 25px;
            border-radius: 0;
            width: auto;
            border-bottom: 2px solid #fff;
        }

        .menu-social a:hover {
            background: #F2B705;
            border-color: #F2B705;
            color: #000;
        }

        /* HERO - FUNDO BEGE */
        .hero {
            background: #E5D7CD;
            padding: 60px 20px 50px;
        }

        .hero-inner {
            max-width: 1100px;
            margin: 0 auto;
        }

        .hero-top {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: flex-start;
            gap: 40px;
            margin-bottom: 35px;
        }

        .hero-title {
            flex: 1;
            min-width: 300px;
            max-width: 550px;
        }

        .hero-title h2 {
            font-size: 3.2rem;
            color: #000;
            line-height: 1.1;
            text-align: right;
        }

        .hero-title h2 span {
            display: block;
            margin-bottom: 6px;
        }

        .hero-image-top {
            flex: 1;
            min-width: 280px;
            max-width: 500px;
        }

        .hero-image-top img {
            width: 100%;
            display: block;
        }

        /* DESCRIÇÃO ALINHADA À DIREITA (IGUAL O TÍTULO) */
        .hero-desc {
            text-align: right;
            max-width: 550px;
            margin: 0 0 0 auto;
            font-size: 1.05rem;
            line-height: 1.7;
            font-weight: 500;
            padding-right: 0;
        }

        .hero-btn-wrap {
            text-align: center;
            display: none;
        }

        .btn-main {
            display: inline-block;
            background: #F2B705;
            color: #000;
            padding: 16px 45px;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            border: 3px solid #000;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            letter-spacing: 1px;
        }

        .btn-main:hover {
            transform: translateY(-2px);
            box-shadow: 5px 5px 0 #000;
        }

        /* GREEN SECTION */
        .section-green {
            background: #00D68F;
            padding: 50px 20px 30px;
            text-align: center;
        }

        .section-green h3 {
            font-size: 1.4rem;
            color: #000;
            margin-bottom: 3px;
            line-height: 1.6;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .highlight-box {
            display: inline-block;
            background: transparent;
            color: #000;
            padding: 10px 28px;
            font-size: 1.5rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 5px;
            border: none;
        }

        .symbol-container {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 0px;
        }

        .symbol-img {
            width: 220px;
            height: auto;
        }

        /* BLOCO LARANJA */
        .bloco-laranja {
            background: #FF7F00;
            padding: 60px 20px;
        }

        .bloco-laranja .two-col {
            max-width: 1100px;
            margin: 0 auto 60px;
            display: flex;
            gap: 50px;
            align-items: center;
        }

        .bloco-laranja .two-col:last-child {
            margin-bottom: 0;
        }

        /* PRIMEIRO: FOTO ESQUERDA / TEXTO DIREITA */
        .bloco-laranja .two-col:nth-child(1) {
            flex-direction: row;
        }

        /* SEGUNDO: TEXTO ESQUERDA / FOTO DIREITA */
        .bloco-laranja .two-col:nth-child(2) {
            flex-direction: row;
        }

        .bloco-laranja .two-col:nth-child(2) .col-image {
            order: 2;
        }

        .bloco-laranja .two-col:nth-child(2) .col-text {
            order: 1;
        }

        /* CAIXAS DE TEXTO */
        .text-box {
            padding: 12px 0;
            margin-bottom: 12px;
            font-size: 1.1rem;
            line-height: 1.7;
            color: #000;
            font-weight: 500;
        }

        .text-box p {
            margin: 0;
        }

        .text-box.bold {
            font-weight: 700;
            font-size: 1.15rem;
        }

        .text-box.lead {
            font-size: 1.3rem;
            font-weight: 700;
        }

        .col-text {
            flex: 1;
            min-width: 300px;
            max-width: 500px;
        }

        .col-image {
            flex: 1;
            min-width: 280px;
            max-width: 450px;
        }

        .col-image img {
            width: 100%;
            display: block;
        }

        /* SECTION RED BANNER */
        .section-red-banner {
            background: #FF4136;
            padding: 40px 20px;
            text-align: center;
        }

        .section-red-banner h3 {
            font-family: 'Sink', 'Bebas Neue', sans-serif;
            font-size: 1.8rem;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin: 0;
            line-height: 1.4;
        }

        /* BLUE SECTION */
        .section-blue {
            background: #00AEEF;
            padding: 60px 20px;
            text-align: center;
        }

        .section-blue p {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 16px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            color: #000;
        }

        .section-blue p:last-child {
            margin-bottom: 0;
        }

        /* FULL IMAGE */
        .full-image-section {
            padding: 60px 20px;
        }

        .full-image-section img {
            width: 100%;
            display: block;
        }

        /* RED SECTION FINAL */
        .section-red {
            background: #FF4136;
            color: #fff;
            padding: 55px 25px;
        }

        .section-red p {
            margin-bottom: 16px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-red p:last-child {
            margin-bottom: 0;
        }

        /* FORM SECTION - VERDE COM SÍMBOLO */
        .form-section {
            background: #00D68F;
            padding: 60px 20px 50px;
            text-align: center;
        }

        .form-section h3 {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 15px;
            color: #000;
        }

        .form-symbol {
            margin-bottom: 30px;
        }

        .form-symbol img {
            width: 180px;
            height: auto;
        }

        .form-box {
            max-width: 520px;
            margin: 0 auto;
            background: #f5f5f5;
            padding: 35px;
            border: 3px solid #000;
        }

        .form-box label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
            margin-top: 22px;
            font-size: 0.95rem;
        }

        .form-box label:first-of-type {
            margin-top: 0;
        }

        .form-box input,
        .form-box select {
            width: 100%;
            padding: 12px;
            border: 2px solid #000;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            background: #fff;
        }

        .form-box input:focus,
        .form-box select:focus {
            outline: none;
            background: #fff8dc;
        }

        .checkbox-title {
            display: block;
            margin-top: 28px;
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .checkbox-group {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .checkbox-group label {
            display: flex;
            align-items: center;
            margin-top: 0;
            font-weight: 500;
        }

        .checkbox-group input {
            width: auto;
            margin-right: 10px;
            cursor: pointer;
        }

        .btn-submit {
            display: block;
            width: 100%;
            background: #F2B705;
            color: #000;
            padding: 16px;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            border: 3px solid #000;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 1px;
            transition: all 0.2s;
            margin-top: 25px;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 5px 5px 0 #000;
        }

        .form-note {
            margin-top: 30px;
            font-size: 0.95rem;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            font-weight: 500;
            color: #000;
        }

        /* FOOTER */
        footer {
            background: #000;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .main-header h1 {
                font-size: 2.2rem;
            }

            .menu-btn {
                right: 15px;
            }

            .menu-overlay a {
                font-size: 1.8rem;
                padding: 15px 30px;
            }

            .hero-title h2 {
                font-size: 1.9rem;
                text-align: center;
            }

            .hero-top {
                flex-direction: column;
                align-items: center;
            }

            .hero-image-top {
                max-width: 100%;
            }

            .hero-desc {
                text-align: center;
                margin: 0 auto;
            }

            .highlight-box {
                font-size: 1.3rem;
                padding: 12px 22px;
            }

            .section-green h3 {
                font-size: 1.25rem;
            }

            .section-red-banner h3 {
                font-size: 1.3rem;
            }

            .bloco-laranja .two-col {
                flex-direction: column !important;
                gap: 30px;
            }

            .bloco-laranja .two-col:nth-child(1) .col-image,
            .bloco-laranja .two-col:nth-child(1) .col-text,
            .bloco-laranja .two-col:nth-child(2) .col-image,
            .bloco-laranja .two-col:nth-child(2) .col-text {
                order: unset !important;
            }

            .col-text,
            .col-image {
                max-width: 100%;
                min-width: unset;
            }

            .form-box {
                padding: 28px 18px;
            }

            .stripes {
                height: 70px;
            }

            .symbol-img {
                width: 160px;
            }

            .form-symbol img {
                width: 140px;
            }
        }