/* Título dos Planos - padrão de cor do projeto */
.titulos-planos {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--navy-blue);
    text-align: center;
    letter-spacing: -0.5px;
}

:root {

    --navy-blue: #0199A4;
    --tesla-blue: #00264d;
    --white: #ffffff;
    --light-grey: #f5f5f5;
    --metallic-silver: #c0c0c0;
    --text-dark: #1a1a1a;
    --text-grey: #666666;

    /* Variáveis do Carrossel */
    --carousel-bg: var(--white);
    --carousel-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    --carousel-shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.1);
    --carousel-logo-size: 120px;
    --carousel-logo-size-mobile: 100px;
    --carousel-gap: 50px;
    --carousel-gap-mobile: 30px;
    --carousel-arrow-bg: var(--white);
    --carousel-arrow-color: var(--tesla-blue);
    --carousel-arrow-hover-bg: var(--tesla-blue);
    --carousel-arrow-hover-color: var(--white);
    --carousel-arrow-size: 40px;
    --carousel-border-radius: 8px;
    --carousel-transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

/* BOTAO DO ZAP */
.btn-whatsapp {
    position: fixed;
    bottom: 14px;
    right: 24px;
    z-index: 99;
}

.btn-whatsapp img {
    max-width: 74px;
    transition: transform 0.4s;
}

.btn-whatsapp img:hover {
    transform: scale(1.1);
}

.btn-whatsapp .tooltip-text {
    visibility: hidden;
    position: absolute;
    width: 120px;
    top: 8px;
    left: -144px;
    padding: 6px;
    border-radius: 8px;
    text-align: center;
    background-color: #232224;
    color: #FFF;
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-whatsapp:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .btn-whatsapp img {
        max-width: 64px;
    }
}

html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
    width: 100%;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.navbar.scrolled {
    background-color: rgba(0, 38, 77, 0.95);
    /* #00264d */
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    flex-shrink: 0;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
    white-space: nowrap;
}

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

.nav-cta-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-shrink: 0;
}

.nav-cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.nav-cta-buttons .btn-primary,
.nav-cta-buttons .btn-secondary {
    height: 46px;
    padding: 0 22px;
}

.btn-with-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 50px;
}

.btn-with-icon svg {
    flex-shrink: 0;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.nav-phones {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 20px;
    flex-shrink: 0;
}

.nav-phone-link {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-phone-link:hover {
    color: var(--navy-blue);
}

.nav-phone-link svg {
    opacity: 0.8;
}

.btn {
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-block;

}

.btn-primary {
    background-color: var(--navy-blue);
    color: var(--white);
    height: 50px;
}

.btn-primary:hover {
    background-color: var(--navy-blue);
    transform: scale(1.05);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--navy-blue);
    border: 2px solid var(--navy-blue);
}

.btn-secondary:hover {
    background-color: var(--navy-blue);
    color: var(--white);
    transform: scale(1.05);
}

.btn-large {
    padding: 18px 48px;
    font-size: 16px;
    font-weight: 600;
}

/* Dropdown Styles */
.dropdown-container {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-toggle::after {
    content: '';
    border: solid currentColor;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform 0.3s ease;
}

.dropdown-container:hover .dropdown-toggle::after {
    transform: rotate(-135deg);
    margin-top: 3px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    min-width: 200px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 10px;
    overflow: hidden;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.dropdown-container:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 5px;
}

.dropdown-menu a {
    display: block;
    padding: 14px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: var(--navy-blue);
    color: var(--white);
}

.dropdown-menu-large a {
    padding: 16px 24px;
    font-size: 15px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    background-image: linear-gradient(to bottom, rgba(6, 18, 30, 0.1), #06121e), url('/assets/TSL2_0014.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 560px;
    /* ajuste se quiser mais/menos altura */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 38, 77, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 22px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 48px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
    opacity: 0.7;
}

/* Section Styles */
section {
    padding: 100px 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--navy-blue);
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--tesla-blue);
    margin: 20px auto 0;
    border-radius: 2px;
}

.about .section-title {
    color: var(--navy-blue);
}

.about .section-title::after {
    background-color: #ffffff;
}

/* About Section */
.about {
    background: linear-gradient(180deg, #01203F 80%, #01345C 100%);
    color: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 400px;
    background: #011a2c;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
}

.about-carousel {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    position: absolute;
    opacity: 0;
    transition: opacity 0.7s;
}

.about-slide.active {
    opacity: 1;
    z-index: 2;
}

.about-carousel-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.about-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s, background 0.3s;
}

.about-dot.active {
    opacity: 1;
    background: var(--tesla-blue);
    width: 30px;
    border-radius: 6px;
}

.about-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.stars {
    color: #ffa500;
    font-size: 20px;
}

.rating-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy-blue);
}

/* Services Section */
.services {
    background-color: var(--light-grey);
}

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

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--tesla-blue);
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-grey);
    margin-bottom: 20px;
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    display: block;
    margin-bottom: 0;
}

.service-link {
    color: var(--tesla-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    padding: 0 30px;
}

.service-link:hover {
    gap: 10px;
}

/* ===== SEÇÃO DE CONVÊNIOS ===== */
.convenios {
    padding: 80px 20px;
    background-color: var(--light-grey);
    text-align: center;
}

.convenios .section-title {
    color: var(--tesla-blue);
    margin-bottom: 50px;
}

.convenios .section-title::after {
    background-color: var(--navy-blue);
}

/* ===== CONTAINER DO CARROSSEL ===== */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
    ;
    padding: 20px 60px;
}

/* ===== CARROSSEL ===== */
.carousel {
    display: flex;
    align-items: center;
    gap: var(--carousel-gap);
    scroll-behavior: smooth;
    padding: 20px 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

/* ===== LOGOS DOS CONVÊNIOS ===== */
.carousel img {
    width: var(--carousel-logo-size);
    height: var(--carousel-logo-size);
    object-fit: contain;
    flex-shrink: 0;
    border-radius: var(--carousel-border-radius);
    padding: 10px;
    background: var(--carousel-bg);
    box-shadow: var(--carousel-shadow);
    transition: all var(--carousel-transition);
    /* Remove o filtro grayscale para ficar sempre colorido */
    filter: brightness(1) saturate(1);
    opacity: 1;
}

/* Opcional: leve realce no hover */
.carousel img:hover {
    transform: translateY(-5px);
    box-shadow: var(--carousel-shadow-hover);
}

@keyframes slideUp {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-3px);
    }
}

.btn-convenios-ver-todos {
    transition: all 0.3s ease;
}

.btn-convenios-ver-todos:hover {
    animation: slideUp 0.3s ease forwards;
    transform: translateY(-8px);
}

/* Botões de navegação */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 48px;
    height: 48px;
    border-radius: 50%;

    border: none;
    background-color: var(--tesla-blue);
    color: #fff;

    font-size: 24px;
    font-weight: 600;
    line-height: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    z-index: 100000;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition:
        background-color 0.3s ease,
        transform 0.2s ease,
        box-shadow 0.3s ease;
}

/* Posições */
.arrow.left {
    left: -24px;
}

.arrow.right {
    right: -24px;
}

/* Hover */
.arrow:hover {
    background-color: var(--navy-blue);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

/* Focus (acessibilidade) */
.arrow:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.7);
    outline-offset: 2px;
}

/* Desabilitado (se você usar JS futuramente) */
.arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
}

/* Patient Portal Section */
.patient-portal {
    background-color: var(--white);
}

.portal-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.portal-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 159, 227, 0.1);
    border-radius: 50%;
}

.portal-icon svg {
    width: 80px;
    height: 80px;
    fill: var(--tesla-blue);
}

.portal-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 20px;
}

.portal-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-grey);
    margin-bottom: 30px;
}

/* Technology Section */
.technology {
    background-color: var(--light-grey);
}

.tech-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.tech-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-grey);
}

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

.tech-item {
    background-color: var(--white);
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--metallic-silver);
    transition: all 0.3s ease;
}

.tech-item:hover {
    border-color: var(--tesla-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tech-item-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: var(--metallic-silver);
    border-radius: 50%;
}

.tech-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--navy-blue);
}

/* Testimonials Section */
.testimonials {
    background-color: var(--white);
}

.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonials-carousel-iframe {
    border: 15px var(--navy-blue);
    width: 100%;
    height: 300px;
    border-radius: 12px;
}

.testimonial-card {
    background-color: var(--light-grey);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-card.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.testimonial-quote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-grey);
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 10px;
}

.testimonial-stars {
    color: #ffa500;
    font-size: 18px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--metallic-silver);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--tesla-blue);
    width: 30px;
    border-radius: 6px;
}

/* Contact Section */
.contact {
    background-color: var(--light-grey);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--tesla-blue);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 5px;
}

.contact-details p {
    font-size: 15px;
    color: var(--text-grey);
    line-height: 1.6;
}

.location-map {
    width: 100%;
    height: 400px;
    background-color: var(--metallic-silver);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

/* Footer */
.footer {
    background-color: var(--tesla-blue);
    color: var(--white);
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-column h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--navy-blue);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--navy-blue);
    border-color: var(--navy-blue);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

.mobile-only {
    display: none;
}

/* Responsive Design */
@media (min-width: 969px) and (max-width: 1350px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .logo img {
        width: 155px !important;
        height: auto;
    }
    
    .nav-menu {
        gap: 18px;
    }
    
    .nav-menu a {
        font-size: 14px;
    }
    
    .nav-cta-buttons {
        gap: 8px;
    }
    
    .nav-cta-buttons .btn-primary,
    .nav-cta-buttons .btn-secondary {
        height: 40px;
        padding: 0 16px;
        font-size: 13px;
    }
    
    .nav-phones {
        margin-left: 10px;
        padding-left: 10px;
        gap: 1px;
    }
    
    .nav-phone-link {
        font-size: 12px;
        gap: 5px;
    }
    
    .nav-phone-link svg {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 968px) {
    .navbar {
        background-color: rgba(0, 38, 77, 0.98);
        padding: 12px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        width: 100%;
        box-sizing: border-box;
    }

    .nav-container {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
    }

    .logo {
        font-size: 22px;
        flex-shrink: 0;
    }

    .logo img {
        max-width: 150px;
        height: auto;
        display: block;
    }

    .nav-cta-buttons,
    .nav-phones {
        display: none !important;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 38, 77, 0.98);
        flex-direction: column;
        padding: 20px 16px;
        text-align: center;
        gap: 16px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        box-sizing: border-box;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-only {
        display: block;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        cursor: pointer;
        z-index: 1001;
        flex-shrink: 0;
        margin-left: auto;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-content,
    .contact-content,
    .portal-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    section {
        padding: 50px 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 28px;
    }

    .logo img {
        max-width: 130px;
    }
}

/* Instagram Feed Section */
.instagram-feed {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 40px;
}

.instagram-description {
    text-align: center;
    font-size: 18px;
    color: var(--text-grey);
    margin-bottom: 40px;
    margin-top: -40px;
}

.instagram-widget-container {
    max-width: 900px;
    margin: 0 auto;
}

.instagram-placeholder {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.instagram-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.instagram-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.instagram-placeholder p {
    font-size: 16px;
    color: var(--text-grey);
    margin-bottom: 30px;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

.btn-instagram svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .instagram-feed {
        padding: 60px 20px;
    }

    .instagram-placeholder {
        padding: 40px 20px;
    }

    .instagram-header h3 {
        font-size: 22px;
    }
}

/* Diferenciais Section */
.diferenciais {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 100px 40px;
}

.diferenciais-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-grey);
    margin-bottom: 50px;
    margin-top: -40px;
    font-style: italic;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.diferencial-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.diferencial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.diferencial-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.diferencial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.diferencial-card:hover .diferencial-image img {
    transform: scale(1.05);
}

.diferencial-content {
    padding: 25px;
}

.diferencial-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 12px;
}

.diferencial-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-grey);
}

@media (max-width: 968px) {
    .diferenciais-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .diferenciais {
        padding: 60px 20px;
    }

    .diferencial-image {
        height: 250px;
    }
}

/* Equipe Section */
.equipe-section {
    background: linear-gradient(180deg, #01203F 0%, #01345C 100%);
    padding: 100px 40px;
}

.equipe-content {
    display: grid;
    grid-template-columns: 1.0fr 1.0fr;
    gap: 15px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.equipe-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 400px;
}

.equipe-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.equipe-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.0;
}

.equipe-text p {
    font-size: 18px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
}

.equipe-text .btn {
    background: var(--navy-blue);
    color: #ffffff;
    border: 2px solid var(--navy-blue);
    border-radius: 50px;
    padding: 18px 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.equipe-text .btn:hover {
    color: var(--tesla-blue);
}

@media (max-width: 968px) {
    .equipe-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .equipe-section {
        padding: 60px 20px;
    }

    .equipe-text h2 {
        font-size: 28px;
    }

    .equipe-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

.swal2-popup {
    border-radius: 16px;
    font-family: 'Poppins', sans-serif;
}

.swal2-title {
    color: --navy-blue;
    font-weight: 700;
}

.swal2-confirm {
    background-color: --navy-blue !important;
    border-radius: 8px;
    padding: 12px 32px;
    font-weight: 600;
}

.swal2-confirm:hover {
    background-color: --tesla-blue !important;
}