/* ===== ABRIR CHAMADO - COM ACESSIBILIDADE ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

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

:root {
    --primary: #023882;
    --primary-light: #1a5bb8;
    --secondary: #00a859;
    --white: #ffffff;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --transition: all 0.3s ease;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
}

body {
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===== ACESSIBILIDADE: SKIP LINK ===== */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px 12px;
    text-decoration: none;
    z-index: 9999;
    font-weight: 600;
    border-radius: 0 0 8px 0;
}
.skip-link:focus {
    top: 0;
    outline: 3px solid #ffb74d;
    outline-offset: 2px;
}

/* ===== ACESSIBILIDADE: FOCO VISÍVEL ===== */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: 3px solid #ffb74d;
    outline-offset: 2px;
    background-color: rgba(255, 183, 77, 0.1);
}

/* ===== HEADER ===== */
header {
    background: var(--primary);
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.8rem 1rem;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 45px;
    width: auto;
    display: block;
}

/* ===== MENU HAMBURGUER ===== */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    z-index: 1001;
}

.hamburger .line {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active .line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ===== MENU NAVEGAÇÃO ===== */
#menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.menu-nav {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    position: relative;
}

.nav-link i {
    color: white;
    font-size: 0.9rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ===== SUBMENU ===== */
.has-submenu {
    position: relative;
}

.submenu-container {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 240px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
    padding: 0.5rem 0;
}

.has-submenu:hover .submenu-container,
.has-submenu:focus-within .submenu-container {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu {
    list-style: none;
}

.submenu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1.5rem;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.submenu li a i {
    color: var(--primary);
    width: 18px;
}

.submenu li a:hover {
    background: var(--light-gray);
    color: var(--primary);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 3rem 1rem;
    color: white;
    width: 100%;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: white;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary {
    background: white;
    color: var(--primary);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* ===== TÍTULO DA PÁGINA ===== */
h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    margin: 2rem 0 1rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

/* ===== CONTAINER PRINCIPAL ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    width: 100%;
}

/* ===== VÍDEO CONTAINER ===== */
.video-container {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    height: fit-content;
}

.video-wrapper {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-text h3 {
    font-size: 1.8rem;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.5rem;
}

.video-text p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ===== FORMULÁRIO ===== */
.form-container {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(2, 56, 130, 0.1);
}

.form-group input[readonly] {
    background: var(--light-gray);
    border-color: #d0d0d0;
}

.form-help {
    display: block;
    font-size: 0.7rem;
    color: var(--gray);
    margin-top: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 1.5rem 0;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--secondary);
}

.checkbox-group label {
    color: var(--dark);
    font-size: 0.95rem;
    margin: 0;
}

.checkbox-group a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* ===== FOOTER ===== */
footer {
    background: var(--primary); /* AZUL ESCURO */
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 0 1.5rem;
    margin-top: auto;
    width: 100%;
}

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

/* Marca */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Colunas */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #00a859; /* VERDE */
    border-radius: 2px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

.footer-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ===== LINKS SEM SUBLINHADO ===== */
.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none !important; /* REMOVE SUBLINHADO */
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: #00a859; /* VERDE AO PASSAR MOUSE */
    transform: translateX(4px);
    text-decoration: none !important; /* MANTÉM SEM SUBLINHADO NO HOVER */
}

.footer-address {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ===== REDES SOCIAIS ===== */
.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 0.5rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #ffffff !important;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none !important; /* SEM SUBLINHADO */
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icon i {
    color: #ffffff !important;
}

.social-icon:hover {
    background: #00a859;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-decoration: none !important;
}

.social-icon:hover i {
    color: #ffffff !important;
}

/* ===== RODAPÉ INFERIOR ===== */
.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 1.5rem 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.copyright span {
    color: #00a859;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-list li {
        justify-content: center;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }
}

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

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }
    
    #menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: var(--primary);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem 1.5rem;
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    #menu.active {
        right: 0;
    }
    
    .menu-nav {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .menu-nav li {
        width: 100%;
    }
    
    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    .submenu-container {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.1);
        display: none;
        margin-top: 0.5rem;
    }
    
    .has-submenu.active .submenu-container {
        display: block;
    }
    
    .has-submenu .nav-link i.fa-chevron-down {
        margin-left: auto;
        transition: transform 0.3s;
    }
    
    .has-submenu.active .nav-link i.fa-chevron-down {
        transform: rotate(180deg);
    }
    
    .submenu li a {
        color: white;
        padding: 0.75rem 0 0.75rem 2rem;
    }
    
    .submenu li a i {
        color: var(--secondary);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }
    
    .video-container {
        padding: 1.5rem;
    }
    
    .video-wrapper {
        max-width: 240px;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand,
    .footer-column {
        align-items: center;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-list li {
        justify-content: center;
    }
    
    .footer-address {
        justify-content: center;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    /* ===== RESPONSIVE ===== */
  .social-link {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

}

@media (max-width: 480px) {
    .header-container {
        padding: 0.5rem 0.75rem;
    }
    
    .logo-container img {
        height: 35px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .video-wrapper {
        max-width: 200px;
    }
    
    .video-text h3 {
        font-size: 1.5rem;
    }
    
    .form-container {
        padding: 1rem;
    }
    
    .checkbox-group {
        flex-wrap: wrap;
    }
    
    .checkbox-group label {
        font-size: 0.85rem;
    }
    
    .btn-submit {
        padding: 0.9rem;
    }
    
    .footer-logo img {
        height: 45px;
    }
}