/* Tornav Main Frontend CSS - Exact Layout Styling */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-yellow: #ffcc00;
    --primary-yellow-hover: #e6b800;
    --accent-cyan: #00b4d8;
    --bg-main: #0b0c0e;
    --bg-card: #14171d;
    --bg-card-light: #f8f9fa;
    --bg-dark-alt: #101216;
    --border-dark: #242933;
    --text-white: #ffffff;
    --text-gray: #a0a6b2;
    --text-dark: #1e2229;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* SECTION TITLES */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    color: var(--text-white);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-yellow);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.05rem;
    margin-top: 0.75rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-yellow {
    background-color: var(--primary-yellow);
    color: #000000;
}
.btn-yellow:hover {
    background-color: var(--primary-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.25);
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-white);
}
.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--text-white);
    transform: translateY(-2px);
}

.btn-outline-yellow {
    background: transparent;
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
}
.btn-outline-yellow:hover {
    background: var(--primary-yellow);
    color: #000;
    transform: translateY(-2px);
}

.btn-dark {
    background-color: #16181e;
    color: var(--text-white);
    border: 1px solid var(--border-dark);
}
.btn-dark:hover {
    background-color: #222630;
    color: var(--primary-yellow);
}

/* HEADER & NAVBAR */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 12, 14, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

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

.brand-logo img {
    height: 42px;
    display: block;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.75rem;
    align-items: center;
}

.main-nav a {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-gray);
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--text-white);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-yellow);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wa-header-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25d366;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.wa-header-link:hover {
    background: #25d366;
    color: #fff;
    transform: scale(1.08);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-white);
    background: none;
    border: none;
    cursor: pointer;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    min-height: 90vh;
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    background: url('../demos/slide1.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 12, 14, 0.85) 0%, rgba(11, 12, 14, 0.5) 55%, rgba(11, 12, 14, 0.25) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background-color: var(--primary-yellow);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    padding: 0.4rem 1rem;
    border-radius: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
}

.btn-play-video {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-white);
    margin-left: 1rem;
    cursor: pointer;
}

.btn-play-video i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-play-video:hover i {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: #000;
    transform: scale(1.1);
}

/* STATS BAR */
.stats-bar {
    background-color: var(--bg-dark-alt);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
    padding: 2.5rem 0;
}

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

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.stat-icon {
    font-size: 2.25rem;
    color: var(--primary-yellow);
    width: 50px;
    display: flex;
    justify-content: center;
}

.stat-info .stat-val {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
}

.stat-info .stat-lbl {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* NOSSOS REBOCADORES SECTION */
.rebocadores-section {
    padding: 6rem 0;
    background-color: var(--bg-main);
}

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

.product-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.product-badge-strip {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 45px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-badge-strip.dark { background-color: #181b22; color: #ffffff; }
.product-badge-strip.cyan { background-color: #00a896; color: #ffffff; }
.product-badge-strip.yellow { background-color: var(--primary-yellow); color: #000000; }

.product-badge-strip span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.product-img-wrapper {
    margin-left: 45px;
    height: 240px;
    background: #f4f6f8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.product-img-wrapper img {
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.05);
}

.product-card-body {
    margin-left: 45px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 0.25rem;
}

.product-card-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 1rem;
}

.product-card-desc {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-card-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #111;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.product-card-link:hover {
    color: #000;
    gap: 0.75rem;
}

/* COMPARE SECTION */
.compare-section {
    padding: 6rem 0;
    background: linear-gradient(90deg, rgba(16, 18, 22, 0.97) 0%, rgba(16, 18, 22, 0.85) 60%), url('../demos/parallax_02.jpg') center/cover no-repeat;
}

.compare-container {
    max-width: 900px;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    background: rgba(20, 23, 30, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-dark);
}

.compare-table th, .compare-table td {
    padding: 1.1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-dark);
}

.compare-table th {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-yellow);
    background: rgba(0, 0, 0, 0.4);
}

.compare-table tr:last-child td {
    border-bottom: none;
}

.compare-table td:first-child {
    font-weight: 600;
    color: var(--text-gray);
    width: 40%;
}

.compare-table td:nth-child(2), .compare-table td:nth-child(3) {
    color: var(--text-white);
    font-weight: 500;
    width: 30%;
}

/* AIRCRAFT COMPATIBILITY SECTION */
.aircraft-section {
    padding: 6rem 0;
    background-color: var(--bg-main);
}

.aircraft-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.aircraft-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    padding: 2rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.aircraft-card:hover {
    border-color: var(--primary-yellow);
    transform: translateY(-5px);
}

.aircraft-icon {
    font-size: 2.5rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aircraft-card:hover .aircraft-icon {
    color: var(--primary-yellow);
}

.aircraft-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
}

/* DIFERENCIAIS SECTION */
.diferenciais-section {
    padding: 6rem 0;
    background-color: var(--bg-dark-alt);
}

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

.diferencial-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.diferencial-card:hover {
    border-color: var(--primary-yellow);
}

.diferencial-icon {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    border: 2px solid var(--primary-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-yellow);
    flex-shrink: 0;
}

.diferencial-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-white);
}

.diferencial-info p {
    font-size: 0.88rem;
    color: var(--text-gray);
}

/* GALLERY & VIDEO SECTION */
.media-section {
    padding: 6rem 0;
    background-color: var(--bg-main);
}

.media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.media-column-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-dark);
}

.gallery-thumbs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.gallery-thumb-item {
    position: relative;
    height: 110px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-dark);
}

.gallery-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-thumb-item:hover img {
    transform: scale(1.1);
}

.video-poster-card {
    position: relative;
    height: 235px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.video-poster-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.play-button-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
}

.play-button-overlay i {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-yellow);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-poster-card:hover .play-button-overlay i {
    transform: scale(1.15);
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.6);
}

/* CTA BANNER (YELLOW BAR) */
.cta-yellow-bar {
    background-color: var(--primary-yellow);
    color: #000000;
    padding: 3.5rem 0;
}

.cta-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-text-side {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cta-bubble-icon {
    font-size: 3rem;
    color: #000;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
}

.cta-desc {
    font-size: 1.05rem;
    font-weight: 500;
}

.cta-btns-side {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* FOOTER */
.site-footer {
    background-color: #090a0c;
    border-top: 1px solid var(--border-dark);
    padding-top: 4rem;
    padding-bottom: 2rem;
}

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

.footer-col-about img {
    height: 40px;
    margin-bottom: 1.25rem;
}

.footer-col-about p {
    font-size: 0.88rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-yellow);
    color: #000;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-white);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--text-gray);
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.88rem;
    color: var(--text-gray);
}

.footer-contact-item i {
    color: var(--primary-yellow);
    margin-top: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* FLOATING WA BUTTON */
.floating-wa-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

/* MODAL VIDEO PLAYER */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-video-container {
    width: 100%;
    max-width: 900px;
    position: relative;
}

.modal-close-btn {
    position: absolute;
    top: -45px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}

.modal-video-aspect {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

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

/* PRODUCT DETAILS MODAL */
.product-modal-container {
    width: 100%;
    max-width: 920px;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

.product-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.product-modal-img-side {
    background: #ffffff;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-modal-img-side img {
    max-height: 320px;
    object-fit: contain;
}

/* CAROUSEL IN MODAL */
.product-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carousel-slide-container {
    width: 100%;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.carousel-arrow:hover {
    background: var(--primary-yellow);
    color: #000;
    border-color: var(--primary-yellow);
}

.prev-arrow { left: -10px; }
.next-arrow { right: -10px; }

.carousel-dots {
    display: flex;
    gap: 6px;
    margin-top: 1rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
}

.carousel-dot.active {
    background: var(--primary-yellow);
    transform: scale(1.25);
}

.product-modal-info-side {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.product-modal-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.product-modal-tagline {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.product-modal-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-specs-list {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.25rem;
    border-radius: 8px;
    border: 1px solid var(--border-dark);
}

.product-spec-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.product-spec-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.product-spec-item span:first-child {
    color: var(--text-gray);
    font-weight: 500;
}

.product-spec-item span:last-child {
    color: var(--text-white);
    font-weight: 700;
}

@media (max-width: 768px) {
    .product-modal-grid {
        grid-template-columns: 1fr;
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #111317;
        padding: 1.5rem;
        border-bottom: 1px solid var(--border-dark);
    }
    .main-nav.active {
        display: block;
    }
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .aircraft-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
    .media-grid {
        grid-template-columns: 1fr;
    }
    .cta-flex {
        flex-direction: column;
        text-align: center;
    }
    .cta-text-side {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .aircraft-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .cta-btns-side {
        flex-direction: column;
        width: 100%;
    }
    .cta-btns-side .btn {
        width: 100%;
    }
}

/* LANG SWITCHER CUSTOM WIDGET */
.lang-switcher {
    position: relative;
    display: inline-block;
    margin-right: 15px;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-family: var(--font-body);
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: var(--primary-yellow);
    background: rgba(255, 204, 0, 0.1);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    min-width: 100px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    border-radius: 4px;
    padding: 0.5rem 0;
    z-index: 1000;
    list-style: none;
    margin-top: 5px;
}

.lang-switcher:hover .lang-dropdown {
    display: block;
}

.lang-dropdown li {
    padding: 0;
}

.lang-dropdown li a {
    display: block;
    padding: 8px 15px;
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.lang-dropdown li a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-yellow);
}

/* HIDE DEFAULT GOOGLE TRANSLATE BAR & LOGOS */
.goog-te-banner-frame.skiptranslate, 
.goog-te-banner-frame,
.goog-te-gadget-icon, 
.goog-te-gadget-simple img,
#goog-gt-tt, 
.goog-tooltip, 
.goog-tooltip:hover,
/* Classes novas do Google Translate (2024+) */
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf,
.skiptranslate > iframe.skiptranslate,
iframe.goog-te-banner-frame {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

body {
    top: 0px !important; 
    position: static !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}

/* Ocultar wrapper container principal que o Google injeta as vezes no topo */
body > .skiptranslate {
    display: none !important;
}
