:root {
    --azul-1: #214998;
    --azul-2: #0b4e95;
    --branco: #ffffff;
    --preto-suave: #1a1a1a;
    --cinza-claro: #f5f7fa;
    --cinza-texto: #4a5568;
    --destaque: #ffb347;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--preto-suave);
    background-color: var(--branco);
    line-height: 1.5;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

h1, h2, h3, .section-title {
    font-style: italic;
    font-weight: 700;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--azul-1);
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: var(--azul-2);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

header {
    background: var(--branco);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.8rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 50px;          /* Ajuste conforme o tamanho da sua logo */
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--azul-1);
    letter-spacing: -0.5px;
}

.brand-tagline {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--azul-2);
}

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('../images/Imagem Principal.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 0;
    padding: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 2rem;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero .btn-primary {
    background: var(--azul-1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero .btn-primary:hover {
    background: var(--azul-2);
    transform: translateY(-3px);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero {
        min-height: 70vh;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

section:nth-child(1) { animation-delay: 0.1s; }
section:nth-child(2) { animation-delay: 0.2s; }
section:nth-child(3) { animation-delay: 0.3s; }
section:nth-child(4) { animation-delay: 0.4s; }
section:nth-child(5) { animation-delay: 0.5s; }
section:nth-child(6) { animation-delay: 0.6s; }
section:nth-child(7) { animation-delay: 0.7s; }
section:nth-child(8) { animation-delay: 0.8s; }
section:nth-child(9) { animation-delay: 0.9s; }

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transform: translateY(0);
}

.btn-primary {
    background: var(--azul-1);
    color: white;
    box-shadow: 0 4px 8px rgba(33,73,152,0.2);
}

.btn-primary:hover {
    background: var(--azul-2);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(33,73,152,0.3);
}

.btn-secondary {
    background: var(--azul-2);
    color: white;
}

.btn-secondary:hover {
    background: var(--azul-1);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
}

.carousel-section {
    padding: 2rem 0 3rem;
    background: var(--cinza-claro);
}

.carousel-container {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.carousel-container:hover {
    transform: scale(1.02);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
    flex: 0 0 100%;
    max-width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 720 / 936;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.carousel-slide img:hover {
    transform: scale(1.02);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.2s;
    z-index: 2;
}

.carousel-btn:hover {
    background: var(--azul-1);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 1rem;
}

.next {
    right: 1rem;
}

.carousel-dots {
    text-align: center;
    padding: 1rem;
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    z-index: 2;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.dot.active {
    background: var(--azul-1);
    width: 24px;
    border-radius: 12px;
}

.card, .step, .problem-item, .uniform-card {
    transition: all 0.3s ease;
}

.card:hover, .step:hover, .uniform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.15);
}

.problem-item:hover {
    transform: translateX(5px);
    background: var(--azul-1);
    color: white;
}

.problem-item:hover i {
    color: white;
}

.quem-somos {
    padding: 4rem 0;
}

.about-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1.2;
}

.highlight-stat {
    background: #eef2ff;
    padding: 1rem;
    border-radius: 16px;
    margin-top: 1.5rem;
    border-left: 5px solid var(--azul-1);
    transition: 0.2s;
}

.highlight-stat:hover {
    transform: translateX(5px);
    background: #e0e7ff;
}

.about-image img {
    max-width: 100%;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.cards-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    text-align: center;
    flex: 1;
    min-width: 220px;
}

.card i {
    font-size: 2.5rem;
    color: var(--azul-1);
    margin-bottom: 1rem;
    transition: 0.2s;
}

.card:hover i {
    transform: scale(1.1);
}

.problems {
    background: var(--cinza-claro);
    padding: 3rem 0;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.problem-item {
    background: white;
    padding: 1rem;
    border-radius: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    cursor: default;
}

.problem-item i {
    color: var(--azul-1);
    transition: 0.2s;
}

.solution {
    padding: 3rem 0;
}

.solution-box {
    background: var(--azul-1);
    color: white;
    padding: 2rem;
    border-radius: 32px;
    text-align: center;
    font-size: 1.1rem;
    transition: 0.3s;
}

.solution-box:hover {
    transform: scale(1.01);
    box-shadow: 0 20px 30px -12px rgba(33,73,152,0.4);
}

.how-it-works {
    padding: 3rem 0;
    background: linear-gradient(white, #f9fafc);
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.step {
    background: white;
    padding: 1.5rem;
    border-radius: 24px;
    text-align: center;
    flex: 1 1 180px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.step-number {
    background: var(--azul-2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 1rem;
    transition: 0.2s;
}

.step:hover .step-number {
    transform: scale(1.1);
    background: var(--azul-1);
}

.specialists {
    padding: 3rem 0;
}

.uniform-gallery {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.uniform-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    width: 280px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.uniform-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.uniform-card:hover img {
    transform: scale(1.05);
}

.uniform-card p {
    padding: 1rem;
    font-weight: 600;
}

.center-btn {
    text-align: center;
}

.faq {
    background: var(--cinza-claro);
    padding: 3rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1rem 0;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--azul-1);
}

.faq-answer {
    display: none;
    padding: 0 0 1rem 0;
    color: var(--cinza-texto);
    animation: fadeInUp 0.3s ease;
}

.faq-answer.active {
    display: block;
}

.final-cta {
    padding: 4rem 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input, .contact-form select {
    padding: 0.8rem 1rem;
    border: 1px solid #ccc;
    border-radius: 40px;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.2s;
}

.contact-form input:focus, .contact-form select:focus {
    outline: none;
    border-color: var(--azul-1);
    box-shadow: 0 0 0 2px rgba(33,73,152,0.2);
}

.form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

footer {
    background: var(--preto-suave);
    color: #ccc;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin-left: 1rem;
    transition: 0.2s;
}

.social-links a:hover {
    color: var(--azul-1);
    transform: translateY(-2px);
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    border-top: 1px solid #333;
    padding-top: 1rem;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }
    .hamburger {
        display: block;
    }
    nav ul {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        padding: 1rem 0;
        gap: 1rem;
    }
    nav ul.show {
        display: flex;
    }
    .hero-grid {
        flex-direction: column;
        text-align: center;
    }
    .hero-image {
        order: -1;
    }
    .about-grid {
        flex-direction: column;
    }
    .steps {
        flex-direction: column;
        align-items: center;
    }
    .step {
        width: 100%;
        max-width: 300px;
    }
    .form-buttons {
        flex-direction: column;
    }
    .btn {
        text-align: center;
    }
    .logo-img {
        height: 40px;
    }
}
header {
    background: var(--branco);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.8rem 0;
    transition: box-shadow 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.logo-img:hover {
    transform: scale(1.02);
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    font-weight: 600;
    color: var(--preto-suave);
    transition: color 0.2s ease;
    position: relative;
    padding: 0.5rem 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--azul-1);
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--azul-1);
}

nav ul li a.active {
    color: var(--azul-1);
    font-weight: 700;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.hamburger:hover {
    color: var(--azul-1);
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background: var(--branco);
        padding: 1rem 0;
        gap: 1rem;
        box-shadow: 0 8px 16px rgba(0,0,0,0.05);
        border-radius: 0 0 20px 20px;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 99;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li a {
        display: inline-block;
        padding: 0.5rem 1rem;
    }

    nav ul li a::after {
        bottom: -2px;
    }
}
.diferenciais {
    padding: 4rem 0;
    background: var(--cinza-claro);
}

.diferenciais-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.diferencial-card {
    background: var(--branco);
    border-radius: 24px;
    overflow: hidden;
    width: 320px;
    max-width: 100%;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diferencial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.15);
}

.diferencial-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.diferencial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.diferencial-card:hover .diferencial-img img {
    transform: scale(1.03);
}

.diferencial-card h3 {
    font-size: 1.4rem;
    margin: 1.2rem 1rem 0.5rem;
    color: var(--azul-1);
    font-style: italic;
    font-weight: 700;
}

.diferencial-card p {
    padding: 0 1rem 1.5rem;
    color: var(--cinza-texto);
    line-height: 1.4;
}

/* Responsividade */
@media (max-width: 768px) {
    .diferenciais-grid {
        gap: 1.5rem;
    }
    .diferencial-card {
        width: 280px;
    }
    .diferencial-img {
        height: 180px;
    }
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.customization {
    padding: 2.5rem 1rem;
    background: var(--branco);
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.customization-image {
    margin: 1.5rem auto;
    max-width: 800px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.customization-image:hover {
    transform: scale(1.02);
}

.customization-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.customization-caption {
    max-width: 650px;
    margin: 1rem auto 0;
    color: var(--cinza-texto);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .customization {
        padding: 1.5rem 1rem;
    }
    
    .customization-caption {
        font-size: 0.95rem;
    }
}

/* Developed by ABREU_HENGUE */
/* https://abreukakuzu.github.io/PORTIFOLIO_ABREU_ATUALIZADO/ */
