* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0f172a;
    --secondary-dark: #1e293b;
    --accent-gold: #d97706;
    --text-gray: #64748b;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --logo-size: 80px;
    --logo-margin-bottom: 0.5rem;
    --logo-offset-x: 0px;
    --logo-offset-y: 0px;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-cb {
    width: var(--logo-size);
    height: var(--logo-size);
    margin-bottom: var(--logo-margin-bottom);
    object-fit: contain;
    transform: translate(var(--logo-offset-x), var(--logo-offset-y));
}

.logo-text {
    text-align: center;
}

.logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--primary-dark);
    margin: 0;
}

.logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 8px;
    color: var(--text-gray);
    font-weight: 500;
    margin-top: -5px;
}

.logo-line {
    width: 120px;
    height: 1px;
    background: var(--primary-dark);
    margin: 5px auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.whatsapp-airplane {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    animation: airplaneFloat 3s ease-in-out infinite;
}

.whatsapp-airplane:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-airplane svg {
    width: 35px;
    height: 35px;
    fill: white;
}

@keyframes airplaneFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero {
    position: relative;
    margin-top: 120px;
    padding: 8rem 2rem;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--primary-dark);
    z-index: -2;
}

.hero-video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.75);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.hero h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp-large {
    background: #25D366;
    color: var(--white);
    padding: 1.3rem 3rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-large:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-secondary-hero {
    background: transparent;
    color: var(--white);
    padding: 1.3rem 3rem;
    border: 2px solid var(--white);
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
}

.btn-secondary-hero:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    font-weight: 600;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-dark);
}

.section-title p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 2rem auto 0;
    font-family: 'Montserrat', sans-serif;
}

.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    font-family: 'Montserrat', sans-serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.feature-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

.mission-section {
    background: var(--primary-dark);
    color: var(--white);
    padding: 4rem 3rem;
    border-radius: 8px;
    text-align: center;
}

.mission-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.mission-section p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    font-family: 'Montserrat', sans-serif;
}

.about-cta-container {
    text-align: center;
    margin-top: 3rem;
}

.btn-whatsapp-about {
    background: #25D366;
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-about:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.team-section {
    background: #0F172A;
    max-width: 100%;
    padding: 5rem 2rem;
}

.team-section .section-title h2 {
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
}

.team-section .section-title h2::after {
    background: var(--white);
}

.team-section .section-title p {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Montserrat', sans-serif;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: stretch;
}

.team-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.team-photo {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center top;
    background: var(--secondary-dark);
    flex-shrink: 0;
    display: block;
}

.team-content {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
    font-weight: 600;
}

.team-oab {
    color: #0f172aea;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    display: block;
    font-family: 'Montserrat', sans-serif;
}

.team-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    flex: 1;
}

.team-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #d97706;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    padding: 0.8rem 1.2rem;
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #ffffff;
    white-space: nowrap;
}

.team-link:hover {
    color: #d97706;
    background: #ffffff00;
    border-color: #ffffff00;
    transform: translateX(5px);
}

.team-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.team-link:hover svg {
    transform: translateX(3px);
}

.team-cta-container {
    text-align: center;
    margin-top: 3rem;
}

.btn-whatsapp-team {
    background: #25D366;
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-team:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.practice-areas {
    background: var(--white);
    max-width: 100%;
}

.practice-areas > .section-title {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.airline-problems {
    background: var(--primary-dark);
    color: var(--white);
    padding: 4rem 3rem;
    border-radius: 12px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.practice-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--primary-dark);
    z-index: 0;
}

.practice-video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.practice-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    z-index: 2;
}

.airline-problems h3,
.airline-problems > p,
.problems-grid,
.rights-info,
.services-cta-container {
    position: relative;
    z-index: 3;
}

.airline-problems h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.airline-problems > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-family: 'Montserrat', sans-serif;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.problem-icon {
    width: 40px;
    height: 40px;
    background: #d97706;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
}

.problem-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.problem-content p {
    opacity: 0.85;
    line-height: 1.6;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
}

.rights-info {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.rights-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    font-family: 'Montserrat', sans-serif;
}

.services-cta-container {
    text-align: center;
    margin-top: 2.5rem;
}

.btn-whatsapp-services {
    background: #25D366;
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-services:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.contact-section {
    background: var(--white);
    padding: 6rem 2rem;
    max-width: 100%;
}

.contact-section .section-title h2 {
    color: var(--primary-dark);
}

.contact-section .section-title h2::after {
    background: var(--primary-dark);
}

.contact-section .section-title p {
    color: var(--text-gray);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-cta h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-dark);
}

.contact-cta p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--text-gray);
}

.btn-whatsapp-cta {
    background: #25D366;
    color: var(--white);
    padding: 1.3rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-cta:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.contact-info-box {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    color: var(--primary-dark);
    border: 2px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-info-item {
    display: flex;
    gap: 1.2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    align-items: flex-start;
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-dark);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-info-details h4 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    color: var(--primary-dark);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-details p {
    color: var(--text-gray);
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.contact-info-details strong {
    color: var(--primary-dark);
    font-weight: 600;
}

footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 3rem 2rem;
    max-width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--white);
}

.footer-logo span {
    color: var(--accent-gold);
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-divider {
    width: 100%;
    max-width: 600px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1rem 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-family: 'Montserrat', sans-serif;
}

.footer-copyright a {
    color: var(--accent-gold);
    text-decoration: none;
}

/* ========================================== */
/* RESPONSIVIDADE */
/* ========================================== */
@media (max-width: 968px) {
    .hero { margin-top: 100px; padding: 6rem 1.5rem; min-height: 600px; }
    .hero h2 { font-size: 3rem; }
    .hero-description { font-size: 1.1rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn-whatsapp-large, .btn-secondary-hero { width: 100%; max-width: 350px; justify-content: center; }
    section { padding: 4rem 1.5rem; }
    .section-title h2 { font-size: 2.2rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-card { padding: 1.5rem; }
    .team-grid { grid-template-columns: 1fr; }
    .team-photo { height: 300px; }
    .team-content { padding: 2rem; }
    .team-link { width: 100%; justify-content: center; }
    .airline-problems { padding: 3rem 2rem; }
    .airline-problems h3 { font-size: 2rem; }
    .contact-container { grid-template-columns: 1fr; gap: 3rem; }
    .contact-cta h3 { font-size: 2rem; text-align: center; }
    .contact-cta p { text-align: center; font-size: 1rem; }
    .btn-whatsapp-cta { width: 100%; max-width: 400px; justify-content: center; margin: 0 auto; display: flex; }
    .contact-info-box { padding: 2rem; }
    .contact-info-item { gap: 1rem; padding: 1.2rem 0; }
    .contact-info-icon { width: 40px; height: 40px; }
    .contact-info-icon svg { width: 20px; height: 20px; }
    .contact-info-details h4 { font-size: 0.85rem; }
    .contact-info-details p { font-size: 0.9rem; }
    .nav-links { display: none; }
    .hamburger-menu { display: flex; }
    .nav-links.mobile-active { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); padding: 2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.1); gap: 1.5rem; }
    .nav-links.mobile-active a { font-size: 1rem; padding: 0.5rem 0; }
    .nav-links.mobile-active .btn-whatsapp { width: 100%; justify-content: center; }
    .logo-main { font-size: 1.4rem; letter-spacing: 2px; }
    .logo-sub { font-size: 0.65rem; letter-spacing: 6px; }
    .logo-line { width: 100px; }
}

@media (max-width: 640px) {
    .hero { margin-top: 90px; padding: 4rem 1rem; min-height: 500px; }
    .hero h2 { font-size: 2.2rem; line-height: 1.2; }
    .hero-description { font-size: 1rem; margin-bottom: 2rem; }
    .btn-whatsapp-large, .btn-secondary-hero { padding: 1rem 2rem; font-size: 0.95rem; }
    .whatsapp-airplane { width: 60px; height: 60px; bottom: 20px; right: 20px; }
    .whatsapp-airplane svg { width: 30px; height: 30px; }
    section { padding: 3rem 1rem; }
    .section-title h2 { font-size: 1.8rem; }
    .section-title p { font-size: 1rem; }
    .about-intro { font-size: 1rem; margin-bottom: 2rem; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-card { padding: 1.5rem; }
    .feature-card h3 { font-size: 1.2rem; }
    .feature-card p { font-size: 0.85rem; }
    .mission-section { padding: 3rem 1.5rem; }
    .mission-section h3 { font-size: 1.6rem; }
    .mission-section p { font-size: 1rem; }
    .team-photo { height: 450px; }
    .team-content { padding: 1.5rem; }
    .team-content h3 { font-size: 1.4rem; }
    .team-oab { font-size: 0.8rem; }
    .team-content p { font-size: 0.85rem; }
    .team-link { width: 100%; justify-content: center; padding: 1rem; }
    .airline-problems { padding: 2.5rem 1.5rem; }
    .airline-problems h3 { font-size: 1.6rem; }
    .airline-problems > p { font-size: 1rem; margin-bottom: 2rem; }
    .problems-grid { gap: 1.5rem; }
    .problem-item { gap: 0.8rem; }
    .problem-icon { width: 35px; height: 35px; }
    .problem-icon svg { width: 18px; height: 18px; }
    .problem-content h4 { font-size: 1rem; }
    .problem-content p { font-size: 0.85rem; }
    .rights-info { padding: 1.5rem; }
    .rights-info p { font-size: 1rem; }
    .contact-section { padding: 3rem 1rem; }
    .contact-container { gap: 2.5rem; }
    .contact-cta h3 { font-size: 1.6rem; line-height: 1.3; }
    .contact-cta p { font-size: 0.95rem; margin-bottom: 2rem; }
    .btn-whatsapp-cta { padding: 1rem 1.5rem; font-size: 0.95rem; }
    .btn-whatsapp-cta svg { width: 20px; height: 20px; }
    .contact-info-box { padding: 1.5rem; border-radius: 8px; }
    .contact-info-item { gap: 0.8rem; padding: 1rem 0; flex-direction: row; align-items: flex-start; }
    .contact-info-icon { width: 36px; height: 36px; border-radius: 4px; }
    .contact-info-icon svg { width: 18px; height: 18px; }
    .contact-info-details h4 { font-size: 0.8rem; margin-bottom: 0.2rem; }
    .contact-info-details p { font-size: 0.85rem; line-height: 1.4; }
    .footer { padding: 2rem 1rem; }
    .footer-logo { font-size: 1.2rem; }
    .footer-links { gap: 1rem; }
    .footer-links a { font-size: 0.85rem; }
    .footer-copyright { font-size: 0.8rem; }
    .logo-cb { width: 60px; height: 60px; }
    .logo-main { font-size: 1.2rem; }
    .logo-sub { font-size: 0.6rem; }
    .logo-line { width: 80px; }
    nav { padding: 0.8rem 1rem; }
    .btn-whatsapp-about, .btn-whatsapp-team, .btn-whatsapp-services { width: 100%; justify-content: center; }
}

@media (max-width: 400px) {
    .hero h2 { font-size: 1.8rem; }
    .hero-description { font-size: 0.9rem; }
    .btn-whatsapp-large, .btn-secondary-hero { padding: 0.9rem 1.5rem; font-size: 0.85rem; }
    .section-title h2 { font-size: 1.5rem; }
    .logo-main { font-size: 1rem; }
    .logo-sub { display: none; }
    .logo-line { display: none; }
    .contact-cta h3 { font-size: 1.4rem; }
    .contact-cta p { font-size: 0.9rem; }
    .btn-whatsapp-cta { padding: 0.9rem 1.2rem; font-size: 0.9rem; }
    .contact-info-box { padding: 1.2rem; }
    .contact-info-item { padding: 0.8rem 0; }
    .contact-info-details h4 { font-size: 0.75rem; }
    .contact-info-details p { font-size: 0.8rem; }
}

/* ========================================== */
/* VÍDEOS - GARANTIR FUNCIONAMENTO */
/* ========================================== */
.hero-video-background.video-failed,
.practice-video-background.video-failed {
    background-image: url('../imagens-adv/poster-hero.jpg');
    background-size: cover;
    background-position: center;
}

.hero-video-background.video-failed video,
.practice-video-background.video-failed video {
    display: none;
}

video[autoplay] {
    -webkit-user-select: none;
    user-select: none;
}
/* ========================================== */
/* TABLETS - AJUSTE ESPECÍFICO */
/* ========================================== */
@media (min-width: 641px) and (max-width: 968px) {
    .team-photo {
        height: 350px; /* Reduz a altura para tablets */
        object-fit: cover;
        object-position: center top;
    }
    
    .team-card {
        max-height: none; /* Remove altura máxima se houver */
    }
    
    .team-content {
        padding: 1.5rem;
    }
    
    .team-content h3 {
        font-size: 1.3rem;
    }
    
    .team-oab {
        font-size: 0.8rem;
    }
    
    .team-content p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .team-link {
        font-size: 0.85rem;
        padding: 0.7rem 1rem;
    }
}

/* Tablets em modo paisagem */
@media (min-width: 768px) and (max-width: 1024px) {
    .team-photo {
        height: 400px; /* Altura intermediária para tablets maiores */
    }
    
    .team-grid {
        gap: 1.5rem;
    }
}