/* Variáveis CSS para temas */

:root {
    --bg-primary: #eae4f5;
    /* fundo principal mais escuro que #f6f2fa */
    --bg-secondary: #e0d6f0;
    /* cards / seções, lilás médio */
    --text-primary: #1a1a1a;
    /* texto bem escuro p/ contraste */
    --text-secondary: #3d3d3d;
    --accent-color: #007bff;
    --accent-dark: #0056b3;
    --gradient-primary: linear-gradient(45deg, #007bff, #00d4ff);
    --gradient-secondary: linear-gradient(45deg, #6c757d, #adb5bd);
    --border-color: #dee2e6;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.3);
    --header-bg: rgba(255, 255, 255, 0.3);
    --footer-bg: #343a40;
    --footer-text: #f8f9fa;
    --footer-link: #adb5bd;
    --footer-link-hover: #ffffff;
    --cookie-banner-bg: #343a40;
    --cookie-banner-text: #f8f9fa;
    --cookie-banner-button-bg: #007bff;
    --cookie-banner-button-text: #ffffff;
}

[data-theme="dark"] {
    --bg-primary: #292b2e;
    --bg-secondary: #212427;
    --text-primary: #f8f9fa;
    --text-secondary: #ced4da;
    --accent-color: #6610f2;
    --accent-dark: #4d00b3;
    --gradient-primary: linear-gradient(45deg, #6610f2, #a347ff);
    --gradient-secondary: linear-gradient(45deg, #495057, #6c757d);
    --border-color: #495057;
    --shadow-light: rgba(0, 0, 0, 0.5);
    --shadow-dark: rgba(0, 0, 0, 0.7);
    --header-bg: rgba(0, 0, 0, 0.3);
    --footer-bg: #212529;
    --footer-text: #ced4da;
    --footer-link: #adb5bd;
    --footer-link-hover: #f8f9fa;
    --cookie-banner-bg: #212529;
    --cookie-banner-text: #ced4da;
    --cookie-banner-button-bg: #6610f2;
    --cookie-banner-button-text: #ffffff;
}


/* Reset e Base */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-dark);
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--border-color);
    transform: translateY(-2px);
}

.highlight {
    color: #1e90ff;
    /* azul vivo */
    font-weight: 800;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}


/* Header e Navegação */

.header {
    background-color: var(--header-bg);
    box-shadow: 0 2px 10px var(--shadow-light);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.navbar {
    background-color: var(--header-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Safari */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* borda sutil */
    padding: 15px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    /* mantém tudo centralizado verticalmente */
    justify-content: space-between;
    max-width: 1200px;
    /* limita largura máxima */
    margin: 0 auto;
    padding: 0 2rem;
    /* padding mais equilibrado */
    position: relative;
}

.nav-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    /* evita o "pulo" do logo */
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-logo .logo {
    height: 60px;
    width: 60px;
    display: block;
}

.nav-logo .logo-text {
    height: 60px;
    width: auto;
    display: block;
}


/* Menu: centralizado automaticamente */

.nav-menu {
    display: flex;
    gap: 2rem;
    margin-left: 3%;
    /* ocupa o centro */
    list-style: none;
}

.nav-item {
    margin: 0;
}

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--accent-color);
    background: var(--bg-secondary);
}


/* Versão padrão (desktop) */

.nav-controls {
    display: flex;
    align-items: center;
    margin-left: auto;
}


/* Theme Switch */

.theme-switch {
    position: fixed;
    /* fixa na tela, não dentro do header */
    top: 33px;
    /* distância do topo */
    right: 10px;
    /* distância da lateral direita */
    display: inline-block;
    width: 60px;
    height: 30px;
    z-index: 2000;
    /* garante que fique acima de outros elementos */
}

.theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.theme-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
}

.theme-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input:checked+.theme-slider {
    background-color: var(--accent-color);
}

input:checked+.theme-slider:before {
    transform: translateX(30px);
}

.theme-icon {
    font-size: 12px;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.sun-icon {
    color: #f39c12;
}

.moon-icon {
    color: #34495e;
}

[data-theme="dark"] .sun-icon {
    opacity: 0.3;
}

[data-theme="light"] .moon-icon,
:root:not([data-theme]) .moon-icon {
    opacity: 0.3;
}

.theme-toggle:hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    /* escondido no desktop */
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 2000;
    /* garante que fique por cima */
}

.hamburger .bar {
    height: 3px;
    width: 25px;
    background-color: var(--text-primary);
    border-radius: 5px;
}


/* Main Content Sections */

main {
    padding-top: 80px;
    /* Espaço para o header fixo */
}

section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}


/* Exemplo: seções específicas */

.services-section,
.mvv-section,
.team-section,
.founders-section,
.departments-section,
.location-section {
    background-color: var(--bg-secondary);
}

section:nth-of-type(even) {
    background-color: var(--bg-secondary);
}


/* Hero Section */

.hero-section {
    background-image: url("assets/images/freepik1.jpg");
    background-size: cover;
    background-position: 70% 30%;
    color: #fff;
    text-align: center;
    padding: 180px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    position: relative;
}

.page-sobre.hero-section {
    background-image: url("assets/images/team-meeting.jpg");
    background-size: cover;
    background-position: 70% 30%;
    /* 30% = mostra mais o topo da imagem */
    color: #fff;
    text-align: center;
    padding: 200px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    position: relative;
}

.page-contato.hero-section {
    background-image: url("assets/images/data-analytics.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 260px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    position: relative;
}

.hero-section {
    position: relative;
    overflow: hidden;
    /* evita o blur vazar */
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    /* copia o background da section */
    filter: blur(3px);
    /* aplica o blur */
    transform: scale(1.1);
    /* evita bordas marcadas */
    z-index: 0;
    /* fica no fundo */
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    /* overlay escuro */
    z-index: 1;
    /* acima do blur, mas atrás do conteúdo */
}

.hero-content {
    position: relative;
    z-index: 2;
    /* conteúdo sempre acima */
}

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

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 40px;
    /* espaço logo abaixo do título */
    line-height: 1.2;
    margin-top: -70px;
    /* sobe o título sem exagero */
}

.hero-description {
    font-size: 1.2rem;
    margin: 0 auto 30px auto;
    /* centraliza horizontalmente e mantém margem inferior */
    max-width: 700px;
    opacity: 0.9;
    text-align: center;
    /* centraliza o texto */
    margin-top: 100px;
    color: #fff;
    font-weight: bolder;
}

.hero-buttons .btn {
    margin: 0 10px;
    margin-bottom: -10px;
}

.hero-image .hero-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    max-width: 300px;
}

.hero-image .hero-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.hero-image h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff;
}

.hero-image p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}


/* Services Section */

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

.service-card {
    background-color: var(--bg-primary);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px var(--shadow-dark);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.service-features {
    text-align: left;
    margin-top: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.service-features li {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.service-features li::before {
    content: "\f00c";
    /* FontAwesome check icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--accent-color);
    margin-right: 10px;
}

.result-item {
    background-color: var(--bg-primary);
    border-radius: 12px;
    box-shadow: 0 5px 15px var(--shadow-light);
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px var(--shadow-dark);
}

.result-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: inline-block;
    animation: countUp 2s ease-out forwards;
}

.result-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.result-item p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.result-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: inline-block;
    animation: zoomIn 0.8s ease-out;
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


/* Animação de entrada */

@keyframes countUp {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


/* Differentials Section */

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.differential-item {
    background-color: var(--bg-primary);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.differential-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px var(--shadow-dark);
}

.differential-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.differential-item h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.differential-item p {
    color: var(--text-secondary);
}


/* Stats Section */

.stats-section {
    background-color: var(--accent-color);
    color: #fff;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item .stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}


/* Technologies Section */

.technologies-section {
    background-color: var(--bg-secondary);
}

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

.tech-category {
    background-color: var(--bg-primary);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
    padding: 30px;
}

.tech-category h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-item {
    background-color: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}


/* Testimonials Section */

.testimonials-section {
    background-color: var(--bg-secondary);
}


/* Esconde a barra nativa */

.testimonials-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 20px;
    scroll-padding: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.testimonials-grid {
    scroll-padding: 50%;
    /* garante que o snap centralize o card */
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}


/* Container das bolinhas */

.scroll-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.scroll-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #777;
    transition: background 0.3s;
    cursor: pointer;
}

.scroll-dots .dot.active {
    background: var(--accent-color);
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    max-width: 350px;
    background-color: var(--bg-primary);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
    padding: 20px;
    scroll-snap-align: start;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.author-info h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.testimonial-rating .fas {
    color: #ffc107;
    /* Star color */
    margin-right: 3px;
}


/* Call to Action Section */

.cta-section {
    background: var(--gradient-primary);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* espaçamento vertical */
    align-items: center;
}

.cta-buttons .btn {
    width: 100%;
    max-width: 250px;
}


/* About Page Specific Styles */

.page-sobre .hero-section {
    background-image: url("assets/images/team-meeting.jpg");
    /* Imagem específica para Sobre Nós */
}

.hero-content-about {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text-about {
    text-align: center;
    color: #fff;
}

.history-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.history-text {
    flex: 2;
}

.history-text h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.history-text p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.company-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

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

.history-timeline {
    flex: 1;
    position: relative;
    padding-left: 30px;
}

.history-timeline::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 5px;
    width: 15px;
    height: 15px;
    background-color: var(--accent-color);
    border-radius: 50%;
    border: 3px solid var(--bg-primary);
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.timeline-content h4 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.timeline-content p {
    color: var(--text-secondary);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mvv-card {
    background-color: var(--bg-primary);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
    padding: 30px;
    text-align: center;
}

.mvv-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.mvv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.mvv-card p,
.mvv-card ul {
    color: var(--text-secondary);
}

.mvv-card ul {
    text-align: left;
    margin-top: 15px;
}

.mvv-card ul li {
    margin-bottom: 8px;
}

.mvv-card ul li::before {
    content: "\f00c";
    /* FontAwesome check icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--accent-color);
    margin-right: 10px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--bg-primary);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
    padding: 30px;
    text-align: center;
}

.member-photo {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.team-member h4 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.member-role {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.member-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.member-skills span {
    display: inline-block;
    background-color: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 5px;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.partner-logo {
    width: 60px;
    /* ajuste conforme o padrão da sua grade */
    height: auto;
    display: block;
    margin: 0 auto 1rem auto;
}

.cert-item {
    background-color: var(--bg-primary);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
    padding: 30px;
    text-align: center;
}

.cert-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.cert-item h4 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.cert-item p {
    color: var(--text-secondary);
}


/* Results Section */

.results-section {
    background-color: var(--bg-secondary);
    padding: 80px 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.result-card {
    background-color: var(--bg-primary);
    border-radius: 12px;
    box-shadow: 0 5px 15px var(--shadow-light);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px var(--shadow-dark);
}

.result-card h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.result-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.result-card ul li {
    font-size: 1rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}


/* Específicos */

.result-card.results h4 {
    color: #28a745;
    /* verde */
}

.result-card.results ul li i {
    color: #28a745;
}

.result-card.benefits h4 {
    color: #28a745;
    /* verde */
}

.result-card.benefits ul li i {
    color: #28a745;
}

.result-card.advantages h4 {
    color: #28a745;
    /* verde */
}

.result-card.advantages ul li i {
    color: #28a745;
}

.result-card.disadvantages h4 {
    color: #dc3545;
    /* vermelho */
}

.result-card.disadvantages ul li i {
    color: #dc3545;
}


/* Contact Page Specific Styles */

.page-contato .hero-section {
    background-image: url("assets/images/tech-solutions.jpeg");
    /* Imagem específica para Contato */
}

.hero-content-contact {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text-contact {
    text-align: center;
    color: #fff;
}

.contact-main-section {
    background-color: var(--bg-primary);
}

.contact-content {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

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

.contact-details .contact-item i {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-top: 5px;
}

.contact-details .contact-item h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.contact-details .contact-item p,
.contact-details .contact-item small {
    color: var(--text-secondary);
}

.contact-social h4 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-top: 30px;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-social .social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--bg-secondary);
    padding: 10px 15px;
    border-radius: 25px;
    color: var(--text-primary);
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-social .social-link img {
    width: 20px;
    height: 20px;
    display: inline-block;
}

.social-link i {
    font-size: 1.2rem;
}

.contact-form {
    flex: 1;
    background: var(--bg-primary);
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-height: 1200px;
}

.contact-form iframe {
    width: 100%;
    height: 1200px;
    min-height: 1200px;
    max-height: none;
    border: none;
    border-radius: 8px;
    overflow: auto;
    display: block;
}

.departments-section {
    background-color: var(--bg-secondary);
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.department-card {
    background-color: var(--bg-primary);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
    padding: 30px;
    text-align: center;
}

.dept-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.department-card h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.department-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.dept-contact p {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.faq-section {
    background-color: var(--bg-primary);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.faq-item {
    background-color: var(--bg-primary);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
    padding: 20px 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-item:hover {
    background-color: var(--bg-secondary);
}

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

.faq-question h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
}

.faq-question i {
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--text-secondary);
    padding-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Ajuste conforme o conteúdo */
    padding-top: 15px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.location-section {
    background-color: var(--bg-secondary);
}

.location-content {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.location-info {
    flex: 1;
    min-width: 300px;
}

.location-info h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.location-info p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.location-details .location-item {
    display: flex;
    flex-direction: column;
    /* força empilhar ícone em cima */
    align-items: center;
    /* centraliza horizontalmente */
    gap: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.location-details .location-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin: 0;
    /* remove deslocamento */
}

.location-details .location-item strong {
    color: var(--text-primary);
}

.location-details .location-item p {
    margin: 0;
    color: var(--text-secondary);
}

.location-content {
    display: flex;
    justify-content: center;
    /* joga tudo pro centro */
    text-align: center;
    /* centraliza textos internos */
}

.location-info {
    max-width: 700px;
    /* evita que o texto fique muito largo */
}

.location-map {
    flex: 2;
    min-width: 400px;
    background-color: var(--bg-secondary);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    color: var(--text-secondary);
    font-size: 1.5rem;
    flex-direction: column;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.map-placeholder small {
    font-size: 1rem;
    margin-top: 10px;
}


/* Policy Pages Specific Styles */

.policy-section {
    padding-top: 120px;
    padding-bottom: 60px;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.policy-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.policy-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.policy-content {
    line-height: 1.8;
    color: var(--text-secondary);
}

.policy-content h2 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    font-weight: 600;
}

.policy-content h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
}

.policy-content p {
    margin-bottom: 1rem;
}

.policy-content ul {
    margin-left: 20px;
    margin-bottom: 1rem;
    list-style: disc;
}

.policy-content ul li {
    margin-bottom: 0.5rem;
}

.policy-content a {
    font-weight: 500;
}

.browser-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

.browser-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background-color: var(--bg-secondary);
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 120px;
    text-align: center;
}

.browser-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px var(--shadow-dark);
}

.browser-link i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.browser-link span {
    color: var(--text-primary);
    font-weight: 500;
}


/* Footer */

.footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 50px 0 20px;
    font-size: 0.95rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo,
.footer-links,
.footer-legal,
.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    flex: 1;
    /* mantém como coluna flexível */
    text-align: center;
}

.footer-logo .footer-logo-img {
    height: 80px;
    margin-bottom: 15px;
    margin: 0 auto 15px auto;
    display: block;
}

.footer-logo p {
    color: var(--footer-link);
}

.footer-content h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-legal a,
.footer-contact p {
    color: var(--footer-link);
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover,
.footer-contact p:hover {
    color: var(--footer-link-hover);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    color: var(--footer-link);
}

.footer-contact i {
    margin-right: 8px;
    /* espaçamento entre ícone e texto */
    color: #6610f2;
    /* cor do ícone */
    font-size: 20px;
}


/* Cookie Banner */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--cookie-banner-bg);
    color: var(--cookie-banner-text);
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.5s ease-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--accent-color);
    font-weight: 500;
}

.cookie-accept {
    background-color: var(--cookie-banner-button-bg);
    color: var(--cookie-banner-button-text);
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cookie-accept:hover {
    background-color: var(--accent-dark);
}


/* Seção Fundadores */

.founders-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.photo-frame {
    width: 150px;
    /* ajuste o tamanho que quiser */
    height: 150px;
    border-radius: 50%;
    /* deixa redondo, se quiser */
    overflow: hidden;
    /* corta qualquer coisa que sair do frame */
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    /* cor de fundo caso a imagem não carregue */
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* cobre todo o espaço sem deformar */
}

.founder-card {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.founder-photo-placeholder {
    margin-bottom: 1.5rem;
}

.photo-frame {
    width: 180px;
    height: 220px;
    border: 3px solid var(--accent-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.photo-frame:hover {
    border-color: var(--accent-dark);
    transform: scale(1.02);
}

.photo-frame i {
    font-size: 3rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.photo-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-align: center;
    padding: 0 1rem;
}

.founder-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.founder-role {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.founder-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}


/* Seção Jornada */

.journey-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.journey-item {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journey-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.journey-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.journey-icon i {
    font-size: 2rem;
    color: white;
}

.journey-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.journey-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}


/* ===== Nossa Missão ===== */


/* ===== Nossa Missão (Card Único) ===== */

.mission-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.mission-card {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow-dark);
    padding: 50px;
    max-width: 900px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-dark);
}

.mission-card .section-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.mission-card .section-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.mission-card .mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.85;
}


/* ===== Seção Mapeamento de Desafios ===== */

.challenges-section {
    background-color: var(--bg-section);
    /* fundo */
    color: var(--text-primary);
    /* texto claro */
    padding: 80px 20px;
    font-family: "Arial", sans-serif;
}

.challenges-section .container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}


/* Grid geral dos desafios */

.challenges-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: -20px;
}


/* Cada coluna como card (igual "Nossos Serviços") */

.challenge-column {
    background-color: var(--bg-primary);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.challenge-column:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px var(--shadow-dark);
}

.challenge-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.challenge-title.negative {
    color: #f45c57;
    /* Vermelho para negativos */
}

.challenge-title.positive {
    color: #4caf50;
    /* Verde para positivos */
}

.challenge-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.challenge-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 1.4;
}

.challenge-item i {
    margin-right: 10px;
    font-size: 18px;
}

.challenge-item.negative i {
    color: #f45c57;
}

.challenge-item.positive i {
    color: #4caf50;
}


/* VS Divider */

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #f0f0f0;
    min-width: 60px;
}


/* Focus Quote */

.focus-quote {
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center;
    padding: 50px;
}

.focus-quote blockquote {
    font-size: 18px;
    color: var(--text-secondary);
    font-style: italic;
    border-left: 4px solid #4caf50;
    padding-left: 15px;
    max-width: 800px;
    margin: 0 auto;
}


/* Switch no menu (mobile) */

.nav-menu .theme-switch {
    display: none;
    /* escondido por padrão */
}


/* ==================== */


/* Ajuste Navbar Tema Light */


/* ==================== */

[data-theme="light"] .navbar {
    background: linear-gradient( 90deg, rgba(0, 123, 255, 0.7) 0%, /* azul */
    rgba(102, 16, 242, 0.7) 50%, /* roxo */
    rgba(230, 222, 244, 0.7) 100%/* lilás */
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}


/* Responsividade */

@media (max-width: 480px) {
    .result-item {
        padding: 25px 20px;
    }
    .result-number {
        font-size: 2.2rem;
    }
}


/* Responsividade */

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: var(--header-bg);
        position: absolute;
        top: 70px;
        left: 0;
        padding: 20px 0;
        box-shadow: 0 5px 10px var(--shadow-light);
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-item {
        margin: 10px 0;
        text-align: center;
    }
    .hamburger {
        display: flex;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        /* garante empilhamento no mobile */
        gap: 15px;
        /* espaçamento entre os botões */
        align-items: center;
        /* centraliza horizontalmente */
    }
    .hero-buttons .btn {
        width: 80%;
    }
    .hero-content {
        flex-direction: column;
    }
    .history-content,
    .contact-content,
    .location-content {
        flex-direction: column;
    }
    .contact-form,
    .location-map {
        min-width: unset;
        width: 100%;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-links ul,
    .footer-legal ul {
        padding: 0;
    }
    .footer-content h4 {
        margin-top: 20px;
    }
    .browser-links {
        flex-direction: column;
        align-items: center;
    }
    .browser-link {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .service-card,
    .differential-item,
    .tech-category,
    .testimonial-card,
    .department-card,
    .cert-item,
    .faq-item {
        padding: 20px;
    }
    .contact-form iframe {
        height: 600px;
    }
}


/* Responsividade para fundadores */

@media (max-width: 768px) {
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .founder-card {
        padding: 1.5rem;
    }
    .photo-frame {
        width: 150px;
        height: 180px;
    }
    .photo-frame i {
        font-size: 2.5rem;
    }
    .journey-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}


/* ===== Responsividade ===== */

@media (max-width: 1024px) {
    .challenges-comparison {
        flex-direction: column;
        gap: 30px;
    }
    .vs-divider {
        margin: 20px 0;
    }
}


/* ===== Tablets (até 992px) ===== */

@media (max-width: 992px) {
    .nav-container {
        padding-left: 5%;
        padding-right: 5%;
        align-items: center;
        /* mantém logo alinhado */
    }
    /* Fundo do menu mobile: só quando ativo */
    .nav-menu.active {
        background-color: rgba(0, 0, 0, 0.95);
        /* dark quase sólido */
        backdrop-filter: blur(4px);
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 20px 0;
        box-shadow: 0 5px 10px var(--shadow-light);
    }
    /* Light mode */
    [data-theme="light"] .nav-menu.active {
        background-color: rgba(255, 255, 255, 0.95);
    }
    .nav-logo .logo {
        height: 50px;
        width: 50px;
    }
    .nav-logo .logo-text {
        height: 50px;
    }
    .nav-menu {
        gap: 1.5rem;
        /* menus mais próximos */
    }
}


/* ===== Mobile (até 768px) ===== */

@media (max-width: 768px) {
    .nav-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .nav-menu {
        display: none;
        /* esconde menu, vai aparecer só o hamburger */
    }
    .hamburger {
        display: flex;
        /* mostra botão de menu mobile */
    }
}


/* ===== Extra small (até 480px) ===== */


/* Mobile: garante que os cards não cortem */

@media (max-width: 480px) {
    .challenges-comparison {
        display: flex;
        flex-direction: column;
        /* força 1 card por linha */
        gap: 20px;
        padding: 0 10px;
        /* respiro nas bordas */
    }
    .challenge-column {
        min-width: unset;
        /* remove trava de 300px */
        width: 100%;
        /* ocupa toda a largura */
        padding: 20px;
        /* padding menor pro mobile */
        box-sizing: border-box;
    }
}


/* Ajuste para cards de desafios no mobile */

@media (max-width: 768px) {
    .challenges-comparison {
        grid-template-columns: 1fr;
        /* força 1 card por linha */
        gap: 20px;
        /* espaço reduzido */
    }
}

@media (max-width: 992px) {
    .challenges-comparison {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}


/* Mobile: esconder switch fixo e mostrar dentro do menu */

@media (max-width: 768px) {
    .nav-controls {
        display: none;
        /* esconde switch fixo */
    }
    .nav-menu .theme-switch {
        display: block;
        /* mostra switch dentro do menu */
        margin-top: 2rem;
        /* dá um respiro */
        text-align: center;
        /* centraliza */
    }
}


/* ===== Ajustes Globais para Cards no Mobile ===== */

@media (max-width: 480px) {
    .service-card,
    .differential-item,
    .tech-category,
    .testimonial-card,
    .department-card,
    .cert-item,
    .faq-item,
    .team-member,
    .challenge-column,
    .mvv-card,
    .journey-item,
    .founder-card,
    .browser-link,
    .result-card {
        /* ✅ adicionado */
        min-width: unset;
        width: 100%;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
        /* evita cortes */
    }
    .services-grid,
    .differentials-grid,
    .tech-grid,
    .testimonials-grid,
    .departments-grid,
    .certifications-grid,
    .team-grid,
    .mvv-grid,
    .journey-grid,
    .founders-grid,
    .browser-links,
    .challenges-comparison {
        padding: 0 10px;
        /* respiro nas bordas */
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-menu .theme-switch {
        display: flex;
        justify-content: center;
        margin-top: -2%;
        /* sobe mais perto do "Início" */
        margin-bottom: 15px;
        /* dá respiro antes do "Sobre Nós" */
    }
}


/* Tablet e Mobile */

@media (max-width: 1024px) {
    .footer-logo {
        text-align: center;
        /* centraliza a coluna */
    }
    .footer-logo .footer-logo-img {
        margin: 0 auto;
        /* centraliza a imagem */
        height: 70px;
    }
}

@media (max-width: 480px) {
    .footer-logo .footer-logo-img {
        height: 60px;
    }
}


/* Breakpoint para telas menores */


/* Ajuste footer desktop */

@media (min-width: 1025px) {
    .footer-links {
        margin-left: 60px;
        /* afasta Navegação do logo */
    }
}


/* Mobile: 1 card por vez */

@media (max-width: 768px) {
    .testimonials-grid {
        gap: 15px;
        padding: 15px;
    }
    .testimonial-card {
        flex: 0 0 100%;
        /* ocupa 100% da largura */
        min-width: auto;
        /* remove largura mínima */
        max-width: 100%;
        /* não passa da tela */
        padding: 15px;
        /* menos espaço interno */
    }
    .testimonial-content p {
        font-size: 0.95rem;
        /* texto mais enxuto */
        line-height: 1.4;
    }
    .author-info h4 {
        font-size: 1rem;
    }
    .author-info span {
        font-size: 0.8rem;
    }
}

@media (max-width: 320px) {
    .hamburger {
        display: flex;
        margin-right: 5px;
        transform: scale(0.9);
        /* opcional: deixa ele menorzinho */
    }
    .nav-logo .logo,
    .nav-logo .logo-text {
        max-height: 40px;
        /* reduz logos para caber junto */
    }
}