/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header e Navegação */
/* Header e Navegação */
.header {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    /* não fixa */
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 150px;
}

.nav-logo h2 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #667eea;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 2100;
    /* acima do menu */
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Responsivo para telas pequenas */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        /* sobre o hero */
        top: 100%;
        /* logo abaixo da navbar */
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        overflow: hidden;
        max-height: 0;
        /* fechado por padrão */
        z-index: 2000;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        border-radius: 0 0 12px 12px;
    }

    .nav-menu li {
        margin-bottom: 30px;
    }

    .nav-link {
        padding: 1rem 2rem;
        width: 100%;

    }

    .hamburger {

        display: flex;
    }
}

/* Hero Section */
.hero {
    min-height: auto;
    /* deixa crescer de acordo com o conteúdo */
    padding: 4rem 2rem;
    /* ocupa no mínimo a tela toda */
    height: auto;
    /* mas deixa crescer se precisar */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    text-align: center;
    overflow: visible;
    /* importante: deixa o conteúdo passar */
}

.hero {
    padding-bottom: 4rem;
    /* dá respiro pro botão */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.4s both;
    margin-bottom: 25px;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn2 {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: white;
    color: #667eea;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

.btn-outline {
    width: 400px;
    margin-top: 20px;
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
}

.kits-button-container {
    text-align: center;
    margin-top: 2rem;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.hero-img {
    height: 500px;
    max-height: 70vh;
    object-fit: cover;
    border-radius: 20px;
}

.hero-image {
    animation: floatSide 3s ease-in-out infinite;
}

@keyframes floatSide {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(10px);
    }

    50% {
        transform: translateX(0);
    }

    75% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(0);
    }
}


/* Seções Gerais */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header .kit-content {
    text-align: justify;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Kits Section */
.kits-section {
    padding-top: 4rem;
    /* espaço antes da seção */
    background: #f8f9fa;
}

.kits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.kit-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.kit-image {
    height: 250px;
    overflow: hidden;
}

.kit-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.kit-content {
    padding: 2rem;
}

.kit-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.kit-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 20px;
}

.kit-features {
    list-style: none;
    margin-bottom: 2rem;
}

.kit-features li {
    padding: 0.5rem 0;
    color: #555;
}

.kit-features i {
    color: #667eea;
    margin-right: 0.5rem;
}

/* PNLD Section */
.pnld-section {
    padding: 6rem 0;
    background: white;
}

.pnld-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pnld-description {
    margin: 2rem 0;
}

.pnld-description p {
    color: #666;
    line-height: 1.7;
}

.pnld-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 20px;
}

.service-item:hover {
    background: #667eea;
    color: white;
    transform: translateX(10px);
}

.service-item i {
    font-size: 2rem;
    color: #667eea;
}

.service-item:hover i {
    color: white;
}

.service-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-item p {
    color: #666;
    font-size: 0.9rem;
}

.service-item:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.pnld-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Atendimento Section */
.atendimento-section {
    padding: 6rem 0;
    background: #ffffff;
}

.atendimento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.atendimento-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.atendimento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.atendimento-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.atendimento-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    text-align: left;
}

.service-list li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Equipe Section */
.equipe-section {
    padding: 6rem 0;
    background: white;
}

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

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.team-member:hover .member-img {
    transform: scale(1.05);
}

.member-info {
    padding: 2rem;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.member-role {
    color: #667eea;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-link {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #667eea;
}

.contact-link i {
    margin-right: 0.5rem;
    color: #667eea;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #667eea;
    transform: translateY(-2px);
}

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

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

.contact-info i {
    margin-right: 0.5rem;
    color: #667eea;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 25px;
    background: #34495e;
    color: white;
}

.newsletter-input::placeholder {
    color: #bdc3c7;
}

.newsletter-btn {
    padding: 0.8rem 1.5rem;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-btn:hover {
    background: #5a6fd8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        margin-bottom: 40px;
    }

    .hero-image {
        display: none;
        /* Hide image on smaller screens to save space */
    }

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

    .pnld-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pnld-img {
        display: none;
        /* Hide image on smaller screens to save space */
    }

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

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

    .missao-valores-section .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        max-height: 100vh !important;
        /* altura máxima: tela toda */
        overflow-y: auto;
        /* se precisar, rolagem */
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .kits-grid {
        grid-template-columns: 1fr;
    }

    .pnld-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .atendimento-grid {
        grid-template-columns: 1fr;
    }

    .equipe-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

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

@media (max-width: 1024px) {
    .hero {
        padding-top: 6rem;
        /* compensa altura menor */
        padding-bottom: 6rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 4rem;
        padding-bottom: 5rem;
        /* garante que botão não cole na próxima seção */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .kit-content,
    .member-info,
    .atendimento-card {
        padding: 1.5rem;
    }

    .btn-outline {
        width: 100%;
    }
}

@media (max-width: 375px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .kit-title {
        font-size: 1.5rem;
    }

    .member-name {
        font-size: 1.1rem;
    }

    .member-role {
        font-size: 0.9rem;
    }

    .contact-link {
        font-size: 0.8rem;
    }

    .newsletter-input {
        padding: 0.6rem;
    }

    .newsletter-btn {
        padding: 0.6rem 1rem;
    }
}


/* Responsivo: celular */
@media (max-width: 768px) {
    .missao-valores-section .container {
        display: grid !important;
        /* garante que grid seja aplicado */
        grid-template-columns: 1fr !important;
        /* força 1 coluna */
        gap: 1.5rem;
        padding: 0 1rem;
        /* evita que saia da tela */
    }

    .missao-valores-section .col {
        padding: 1rem;
        width: 100%;
        /* força largura completa */
    }
}

.missao-valores-section .col {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.section-title {
    font-size: 1.8rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

.valores-list {
    list-style: none;
    padding: 0;
}

.valores-list li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.valores-list strong {
    color: #764ba2;
}


.sobre-nos {
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
    padding: 20px;
}

.missao-valores-section {
    padding: 4rem 2rem;
    background: #f9f9f9;
    color: #333;
}

.missao-valores-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 colunas no desktop */
    gap: 2rem;
    align-items: start;
}


/* ===== Seção de Contatos ===== */
#contato {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}


#contato .contatos-1 {
    background: #e6f3ff;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #cce7ff;
}

#contato .contatos-1 p {
    margin: 5px 0;
    font-size: 1rem;
}

#contato .contatos-1 strong {
    color: #0077cc;
}



#contato h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #764ba2;
    text-align: center;
}

#contato p {
    color: #000000;
    line-height: 1.6;
}

#contato h3 {
    margin-top: 25px;
    font-size: 1.3rem;
    color: #222;
    border-left: 4px solid #0077cc;
    padding-left: 10px;
}

#contato a {
    color: #0077cc;
    text-decoration: none;
    font-weight: bold;
}

#contato a:hover {
    text-decoration: underline;
    color: #005fa3;
}

/* Blocos */
#contato .contatos,
#contato .emails,
#contato .horario,
#contato .endereco {
    margin-bottom: 25px;
}

/* Lista de e-mails */
#contato ul {
    list-style: none;
    padding-left: 0;
}

#contato li {
    margin-bottom: 8px;
}

/* Iframe responsivo */
#contato iframe {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    border: none;
    margin-top: 10px;
}

/* Detalhes visuais */
#contato small {
    display: block;
    margin-top: 5px;
    font-size: 0.9rem;
    color: #666;
}

/* Destaque horário */
#contato .horario {
    background: #e6f3ff;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #cce7ff;
}

#contato .horario p {
    margin: 5px 0;
    font-size: 1rem;
}

#contato .horario strong {
    color: #0077cc;
}

.html-section {
    background: #f8f9fa;
    padding: 6rem 0;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    animation: pulse 2s infinite;
    text-decoration: none;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


#msg-sucesso{
    font-size: 28px;
    background-color: #b0f5c9;
    width: 440px;
    padding: 10px;
    border-radius: 10px;
    
}