.elementor-4536 .elementor-element.elementor-element-3451ad1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;}/* Start custom CSS for container, class: .elementor-element-3451ad1 *//* Reset Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Importar Fontes */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* Variáveis CSS (Opcional mas recomendado) */
:root {
    --td-azul-primary: #0EA5E9;
    --td-azul-dark: #0369A1;
    --td-preto: #0B1220;
    --td-texto: #0F172A;
    --td-texto-secondary: #475569;
    --td-bg-gray: #F8FAFC;
}

/* Base Typography */
body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: var(--td-texto);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}
 h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: #0B1220;
            margin-bottom: 30px;
            line-height: 1.1;
        }

        h2 {
            font-size: 2.5rem;
            font-weight: 600;
            color: #0B1220;
            margin: 40px 0 25px 0;
        }

        h3 {
            font-size: 1.8rem;
            font-weight: 600;
            color: #0369A1;
            margin: 30px 0 20px 0;
        }

        p {
            font-size: 1.1rem;
            color: #475569;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        strong {
            color: #0F172A;
            font-weight: 600;
        }

        a {
            color: #0369A1;
            text-decoration: none;
            font-weight: 500;
        }

        a:hover {
            text-decoration: underline;
        }

        /* Hero Section */
        .hero {
            background-color: #0B1220;
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            right: -2%;
            width: 50%;
            height: 100%;
            background: url('https://treinadordavid.com/wp-content/uploads/2025/09/treinadordavid-david-orginal.webp') no-repeat center;
            background-size: cover;
            opacity: 0.25;
            transform: scale(1.2);
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            color: white;
            font-size: 4rem;
            margin-bottom: 20px;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: #0EA5E9;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .hero p {
            color: #CBD5E1;
            font-size: 1.2rem;
            max-width: 700px;
            margin-bottom: 40px;
        }

        /* Buttons */
        .cta-primary {
            background-color: #0EA5E9;
            color: white;
            padding: 18px 45px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            display: inline-block;
            transition: all 0.3s ease;
            text-decoration: none;
            font-family: 'Oswald', sans-serif;
            letter-spacing: 1px;
        }

        .cta-primary:hover {
            background-color: #0369A1;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
            text-decoration: none;
        }

        .cta-secondary {
            background-color: transparent;
            color: #0369A1;
            border: 2px solid #0369A1;
            padding: 16px 40px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            display: inline-block;
            transition: all 0.3s ease;
            text-decoration: none;
            margin-left: 20px;
        }

        .cta-secondary:hover {
            background-color: #0369A1;
            color: white;
            text-decoration: none;
        }

        /* Sections */
        .section {
            padding: 80px 0;
        }

        .section-dark {
            background-color: #0B1220;
            color: white;
        }

        .section-gray {
            background-color: #F8FAFC;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .section-title p {
            font-size: 1.2rem;
            color: #64748B;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Marine Box */
        .marine-box {
            background-color: #0B1220;
            color: white;
            padding: 40px;
            border-radius: 15px;
            margin: 40px 0;
            border-left: 5px solid #0EA5E9;
            position: relative;
        }

        .marine-box::before {
            content: "🇺🇸";
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 2rem;
            opacity: 0.5;
        }

        .marine-box h3 {
            color: #0EA5E9;
            margin-bottom: 20px;
        }

        .marine-box p {
            color: #CBD5E1;
        }
.marine-box p {
    color: #CBD5E1;
}

.marine-box strong {
    color: #0EA5E9;
    font-weight: 700;
}
        /* Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .card {
            background: white;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: #0EA5E9;
        }

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

        .card-number {
            width: 60px;
            height: 60px;
            background-color: #0EA5E9;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #0B1220;
        }

        .card p {
            color: #475569;
            font-size: 1rem;
        }

        /* Process Timeline */
        .process-container {
            position: relative;
            padding: 0 50px;
            margin: 60px 0;
        }

        .process-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background-color: #0EA5E9;
            transform: translateX(-50%);
        }

        .process-step {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
            position: relative;
        }

        .process-step:nth-child(even) .step-content:first-child {
            grid-column: 2;
        }

        .step-content {
            background-color: #F8FAFC;
            padding: 35px;
            border-radius: 15px;
            position: relative;
        }

        .step-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #0B1220;
        }

        .step-number {
            position: absolute;
            left: 50%;
            top: 30px;
            transform: translateX(-50%);
            width: 50px;
            height: 50px;
            background-color: #0EA5E9;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Oswald', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            z-index: 2;
            border: 4px solid white;
        }

        /* DISC Profiles */
        .disc-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .disc-card {
            background: rgba(255,255,255,0.05);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border: 2px solid #0EA5E9;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .disc-card:hover {
            background: rgba(14,165,233,0.15);
            transform: scale(1.05);
        }

        .disc-letter {
            width: 80px;
            height: 80px;
            background-color: #0EA5E9;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-family: 'Oswald', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
        }

        .disc-card h3 {
            color: #0EA5E9;
            margin-bottom: 15px;
        }

        .disc-card p {
            color: #CBD5E1;
        }

        /* Stats */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin: 50px 0;
        }

        .stat-card {
            background: white;
            padding: 35px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .stat-number {
            font-family: 'Oswald', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: #0EA5E9;
            margin-bottom: 10px;
        }

        .stat-label {
            color: #64748B;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 50px;
        }

        .testimonial-card {
            background: #F8FAFC;
            padding: 40px;
            border-radius: 15px;
            border-left: 5px solid #0EA5E9;
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 4rem;
            color: #0EA5E9;
            opacity: 0.2;
            font-family: Georgia, serif;
        }

        .testimonial-text {
            font-style: italic;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 25px;
            color: #475569;
        }

        .testimonial-author {
            font-family: 'Oswald', sans-serif;
            font-size: 1.2rem;
            color: #0B1220;
            font-weight: 600;
        }

        .testimonial-role {
            color: #64748B;
            font-size: 0.95rem;
            margin-top: 5px;
        }

        /* MAAS Section */
        .maas-container {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            margin: 50px 0;
        }

        .maas-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .maas-header h3 {
            font-size: 2rem;
            color: #0B1220;
            margin-bottom: 15px;
        }

        .maas-header p {
            font-size: 1.1rem;
            color: #64748B;
        }

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

        .pilar-item {
            background: #F8FAFC;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }

        .pilar-item:hover {
            background: #0EA5E9;
            color: white;
            transform: translateY(-5px);
        }

        .pilar-item:hover h4,
        .pilar-item:hover p {
            color: white;
        }

        .pilar-item h4 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.1rem;
            color: #0B1220;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .pilar-item p {
            font-size: 0.9rem;
            color: #64748B;
            margin: 0;
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 50px 0;
        }

        .faq-item {
            background: white;
            margin-bottom: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            overflow: hidden;
        }

        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            background: #F8FAFC;
            transition: background 0.3s ease;
            position: relative;
            padding-right: 60px;
        }

        .faq-question:hover {
            background: #E2E8F0;
        }

        .faq-question h3 {
            font-size: 1.2rem;
            color: #0B1220;
            margin: 0;
        }

        .faq-question::after {
            content: '+';
            position: absolute;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            color: #0EA5E9;
            font-weight: 600;
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 20px 30px 30px;
        }

        .faq-item.active .faq-question::after {
            content: '−';
        }

        /* WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            z-index: 999;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(0,0,0,0.25);
            text-decoration: none;
        }

        /* Final CTA Section */
        .final-cta {
            background-color: #0B1220;
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://treinadordavid.com/wp-content/uploads/2025/09/treinadordavid-david-orginal.webp') center/cover;
            opacity: 0.1;
        }

        .final-cta-content {
            position: relative;
            z-index: 2;
        }

        .final-cta h2 {
            color: white;
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .final-cta p {
            color: #CBD5E1;
            font-size: 1.3rem;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .semper-fi {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            color: #0EA5E9;
            margin-top: 40px;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.5rem; }
            
            .hero h1 { font-size: 3rem; }
            .hero-subtitle { font-size: 1.2rem; }
            
            .cards-grid { grid-template-columns: 1fr; }
            .disc-grid { grid-template-columns: repeat(2, 1fr); }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .testimonials-grid { grid-template-columns: 1fr; }
            
            .process-step { 
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .process-line { display: none; }
            .step-number { 
                position: static;
                margin: 0 auto 20px;
            }
            
            .cta-secondary {
                margin-left: 0;
                margin-top: 15px;
                display: block;
                text-align: center;
            }
        }/* End custom CSS */