/* Reset e Variáveis */
:root {
    --primary-color: #ffffff;
    --secondary-color: #111111;
    --dark-color: #111111;
    --light-color: #ffffff;
    --text-color: #f5f5f5;
    --text-dark: #333333;
    --gray-light: #f0f0f0;
    --gray-mid: #888888;
    --gray-dark: #444444;
    --accent-color: #e0e0e0;
    --blue-dark: #112338;
    --blue-light: rgba(17, 35, 56, 0.8);
    --font-primary: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --border-radius: 4px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Reset Básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container e utilitários */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
}

.section-title.light {
    color: var(--light-color);
}

.section-subtitle {
    text-align: center;
    color: var(--gray-mid);
    margin-top: -1.5rem;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background-color: transparent;
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: rgba(17, 17, 17, 0.95);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 60px;
    transition: var(--transition);
}

.header.scrolled .logo img {
    height: 40px;
}

.nav-menu ul {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--gray-light);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--accent-color);
}

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

.nav-cta {
    color: var(--accent-color) !important;
    border: 1px solid var(--accent-color);
    padding: 0.5rem 1rem !important;
    border-radius: var(--border-radius);
}

.nav-cta:hover {
    background-color: var(--accent-color);
    color: var(--dark-color) !important;
}

.mobile-menu-btn {
    display: none;
}

.nav-cta.mobile {
    display: none;
}

/* Hero Section */
.hero-section {
    padding: 200px 0px 100px 0px;
    background: linear-gradient(to right, var(--blue-dark), var(--blue-light)), 
                url('bg-hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-content {
    max-width: 1150px;
    margin: 0 auto;
    text-align: center;
}

.headline {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 1150px;
}

.subheadline {
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    font-weight: 400;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--dark-color);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.cta-button:hover {
    background-color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.cta-button.outline:hover {
    background-color: var(--accent-color);
    color: var(--dark-color);
}

/* Risks Minimal Section */
.risks-minimal {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.risk-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.risk-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.risk-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    --weight: thin;
}

.risk-item p {
    font-size: 0.95rem;
    color: var(--gray-light);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .risks-minimal {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .risk-item {
        padding: 0.8rem;
    }
    
    .risk-item i {
        font-size: 1.3rem;
    }
    
    .risk-item p {
        font-size: 0.9rem;
    }
}

/* Process Section */
.process-section {
    background-color: var(--secondary-color);
    padding-bottom: 6rem;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}


.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 4rem;
}

.timeline-marker {
    position: absolute;
    background-color: var(--accent-color);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    box-shadow: var(--shadow);
    z-index: 1;
}

.timeline-marker span {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.timeline-content {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--accent-color);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateX(10px);
    background-color: rgba(255, 255, 255, 0.05);
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.process-list {
    margin-bottom: 1.5rem;
}

.process-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.process-list li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.deliverable {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--blue-dark);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.deliverable i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.process-result {
    text-align: center;
    max-width: 700px;
    margin: 3rem auto 0;
}

.process-result p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Authority Section */
.authority-section {
    background-color: var(--secondary-color);
}

.authority-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.authority-card {
    background-color: transparent;
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(224, 224, 224, 0.15);
}

.authority-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    background-color: rgba(255, 255, 255, 0.02);
    border-color: var(--accent-color);
}

.authority-icon {
    font-size: 2.5rem;
    color: var(--gray-mid);
    margin-bottom: 15px;
}

.authority-card h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #E0E0E0;
    font-weight: 600;
    line-height: 1.2;
}

.authority-card p {
    color: var(--gray-mid);
    font-size: 1rem;
    line-height: 1.5;
}

.video-showcase {
    width: 100%;
    margin: 4rem auto 0;
    position: relative;
}

.video-showcase h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--light-color);
    text-align: center;
    margin-bottom: 2rem;
}

.video-carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.video-carousel {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
}

.video-slide {
    min-width: calc(100% / 3);
    width: calc(100% / 3);
    padding: 0 1rem;
    box-sizing: border-box;
    flex-shrink: 0;
}

.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background-color: var(--dark-color);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-title {
    background-color: rgba(26, 26, 26, 0.95);
    padding: 1rem;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    color: var(--light-color);
    font-size: 0.9rem;
    line-height: 1.4;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    padding: 0 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

.prev-btn, .next-btn {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--accent-color);
    color: var(--dark-color);
}

.prev-btn:disabled, .next-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-indicators {
    display: flex;
    gap: 0.5rem;
}

.carousel-indicators span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-indicators span.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, var(--blue-dark), var(--blue-light)), 
                url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 7rem 0;
}

.cta-section .section-title {
    color: var(--light-color);
    margin-bottom: 0.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.contact-subtitle {
    color: var(--light-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.contact-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.contact-form {
    background-color: #e0e0e0;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Contact Section */
.contact-section {
    background-color: var(--dark-color);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-content {
    text-align: left;
}

.contact-content p {
    font-size: 1.2rem;
    max-width: 900px;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(17, 17, 17, 0.1);
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--dark-color);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    transition: var(--transition);
    font-size: 1rem;
}

.form-group input::placeholder {
    color: rgba(17, 17, 17, 0.6);
}

.form-group input:focus {
    outline: none;
    border-color: var(--blue-dark);
    background-color: #ffffff;
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background-color: #111111;
    color: var(--light-color);
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.submit-button:hover {
    background-color: var(--blue-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* About Section */
.about-section {
    background-color: #111111;
    padding: 5rem 0;
    position: relative;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.about-logo {
    text-align: left;
}

.about-logo img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.about-content {
    text-align: left;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.9;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-section .section-title.text-left {
    color: var(--accent-color);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

/* Publications Section */
.publications-section {
    position: relative;
    background-color: #111111;
    color: #fff;
    padding: 5rem 0 0 0;
}

.publications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.publication-card {
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(224, 224, 224, 0.05);
    padding: 2rem;
}

.publication-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(224, 224, 224, 0.1);
}

.publication-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.publication-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    font-weight: 500;
    font-family: var(--font-primary);
}

.publication-divider {
    height: 1px;
    width: 40px;
    background: rgba(224, 224, 224, 0.1);
    margin-bottom: 1.5rem;
}

.publication-content p {
    color: rgba(224, 224, 224, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 2rem;
}

.read-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(224, 224, 224, 0.03);
    color: rgba(224, 224, 224, 0.6);
    border-radius: 50%;
    align-self: flex-end;
    transition: all 0.3s ease;
    border: 1px solid rgba(224, 224, 224, 0.05);
}

.read-more:hover {
    background-color: var(--blue-dark);
    color: var(--accent-color);
    border-color: transparent;
}

@media (max-width: 992px) {
    .publications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .publications-section {
        overflow: hidden;
    }

    .publications-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding: 1rem;
        margin: 2rem -1rem 0;
    }

    .publication-card {
        flex: 0 0 90%;
        scroll-snap-align: center;
        margin-right: 1rem;
    }

    .publication-card:last-child {
        margin-right: 0;
    }
}

/* Final CTA Section */
.final-cta {
    background-color: #111111;
    padding: 5rem 0;
    text-align: center;
}

.final-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.final-cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: #bbbbbb;
}

.final-cta .cta-button {
    font-size: 1rem;
    padding: 1rem 2rem;
    background-color: #e0e0e0;
    color: #111111;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background-color: #111111;
    padding: 4rem 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

.footer-credits {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-credits .copyright {
    color: var(--gray-mid);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.footer-credits .developed-by {
    color: var(--gray-mid);
    font-size: 0.8rem;
}

.footer-credits .developed-by a {
    color: var(--gray-mid);
    font-weight: 700;
    transition: var(--transition);
}

.footer-credits .developed-by a:hover {
    color: var(--accent-color);
}

.footer-location {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
}

.location-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    line-height: 1;
}

.location-icon .ph {
    --weight: regular;
}

.location-info p {
    color: var(--gray-mid);
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: left;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.contact-item p {
    color: var(--gray-mid);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 2rem;
    }

    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
        text-align: center;
    }

    .footer-logo-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        margin-bottom: 1rem;
        width: 100%;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-logo img {
        height: 50px;
        margin: 0 auto;
    }

    .footer-contact {
        align-items: center;
        width: 100%;
    }

    .footer-addresses {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
        width: 100%;
    }

    .footer-location {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .location-icon {
        display: none;
    }

    .location-info {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .location-info p {
        text-align: center;
        margin-bottom: 0.3rem;
    }

    .footer-credits {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        margin-top: 0.5rem;
        width: 100%;
    }
}

/* Estilo para ícones */
.ph {
    display: inline-block;
    width: 1em;
    height: 1em;
    line-height: 1;
    vertical-align: middle;
}

.risk-icon .ph, 
.authority-icon .ph {
    font-size: 2.5rem;
    --weight: thin;
}

.video-placeholder .ph {
    font-size: 4.5rem;
    --weight: thin;
    opacity: 0.9;
}

.deliverable .ph {
    font-size: 1.5rem;
    --weight: thin;
    margin-right: 0.5rem;
}

.social-icon .ph {
    font-size: 1.2rem;
    --weight: thin;
}

/* Ajuste de tamanho dos ícones nos botões */
.cta-button .ph {
    margin-right: 0.5rem;
    font-size: 1.2rem;
    --weight: thin;
    vertical-align: -0.1em;
}

/* Corrigir o tamanho do ícone do WhatsApp */
.whatsapp-button .ph {
    font-size: 2rem;
    --weight: regular;
}

.carousel-controls .ph {
    --weight: thin;
}

.footer-contact .ph {
    margin-right: 0.3rem;
    --weight: thin;
}

.read-more .ph {
    --weight: thin;
    margin-left: 0.2rem;
}

/* Responsividade */
@media (max-width: 1200px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 14px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-contact {
        grid-column: span 2;
        align-items: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title.text-left {
        text-align: center;
        font-size: 2.4rem;
    }
    
    .contact-content {
        text-align: center;
    }
    
    .contact-content p {
        margin: 0 auto 2rem;
    }
    
    .publications-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-slide {
        flex: 0 0 50%;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .about-logo {
        text-align: center;
    }
    
    .about-logo img {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .about-content {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-section .section-title.text-left {
        text-align: center;
        font-size: 2.4rem;
        margin-bottom: 1.2rem;
    }

    .authority-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .authority-card {
        padding: 1.5rem;
    }

    .authority-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .authority-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .authority-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: none;
    }

    .nav-cta.mobile {
        display: inline-block;
        background-color: var(--accent-color);
        color: var(--dark-color) !important;
        padding: 0.5rem 1rem !important;
        border-radius: var(--border-radius);
        font-weight: 500;
        transition: var(--transition);
        border: none;
        font-size: 0.9rem;
    }

    .nav-cta.mobile:hover {
        background-color: var(--light-color);
        transform: translateY(-2px);
    }

    /* Removendo estilos antigos do menu mobile */
    .mobile-menu-btn span,
    .mobile-menu-btn.active span {
        display: none;
    }

    /* Ajustes de espaçamento para mobile */
    section {
        padding: 4rem 0;
    }

    .hero-section {
        padding-top: 120px;
    }

    .container {
        padding: 0 1.5rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .headline {
        font-size: 2.2rem;
    }

    .subheadline {
        font-size: 1.1rem;
    }

    .highlight-text {
        font-size: 1.2rem;
    }

    .risk-card,
    .authority-card,
    .publication-card {
        margin-bottom: 1.5rem;
    }

    .timeline-item {
        padding-left: 50px;
        margin-bottom: 3rem;
    }

    .timeline-marker {
        width: 40px;
        height: 40px;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .cta-section {
        padding: 4rem 0;
    }

    .contact-section {
        padding: 4rem 0;
    }

    .footer {
        padding: 2rem 0;
    }

    .video-slide {
        flex: 0 0 100%;
    }
    
    .video-showcase {
        margin-top: 2rem;
    }
    
    .video-showcase h3 {
        font-size: 1.5rem;
    }

    .video-carousel {
        grid-template-columns: repeat(9, 100%); /* 9 vídeos em tela cheia */
        gap: 1rem;
    }

    .video-slide {
        min-width: 100%;
        width: 100%;
    }

    .video-title {
        min-height: 50px;
        padding: 0.8rem;
        font-size: 0.85rem;
    }

    .authority-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }

    .headline {
        font-size: 2rem;
    }

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

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

.section-title.text-left {
    text-align: left;
    margin-bottom: 1rem;
    font-size: 2.8rem;
}

.rounded-image {
    border-radius: 5px;
    overflow: hidden;
}

.cta-section .section-title {
    margin-bottom: 0.5rem;
}

.authority-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

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

    .authority-card {
        padding: 1.5rem;
    }

    .authority-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .authority-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .authority-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

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

    .authority-card {
        padding: 1.2rem;
    }
}

@media (max-width: 576px) {
    .authority-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 0.5rem;
    }
}

/* Thanks Page */
.thanks-page {
    background-color: #111111;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

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

.thanks-content h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--light-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.thanks-content p {
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.thanks-content .whatsapp-text {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gray-mid);
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background-color: #25D366;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background-color: #1ea952;
}

.whatsapp-button i {
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .thanks-content h1 {
        font-size: 2rem;
    }

    .thanks-content p {
        font-size: 1.1rem;
    }

    .whatsapp-button {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 1rem;
    }
}

.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-dark-blue) 100%);
    padding: 8rem 0;
}

.thank-you-section .section-title {
    color: var(--color-white);
    margin-bottom: 2rem;
}

.thank-you-message {
    color: var(--color-gray-light);
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-white);
    font-weight: 500;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.back-home:hover {
    background: rgba(255, 255, 255, 0.1);
}

.back-home i {
    font-size: 1.25rem;
} 