:root {
    --ciano: #028391;
    --laranja: #F77F00;
    --creme: #F4F2DE;
    --texto: #1A1A1A;
    --branco: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Public Sans', sans-serif;
    background-color: var(--creme);
    color: var(--texto);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--creme);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { height: 45px; }

.nav { display: flex; align-items: center; }

.nav a {
    text-decoration: none;
    color: var(--texto);
    margin-left: 25px;
    font-weight: 600;
    transition: 0.3s;
}

.nav a.active { color: var(--ciano); }

.btn-zap-nav {
    background: var(--laranja);
    color: var(--branco) !important;
    padding: 10px 20px;
    border-radius: 25px;
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    color: var(--ciano);
    font-size: 32px;
}

/* Ícones */
.material-symbols-rounded {
    color: var(--laranja) !important;
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Hero */
.hero {
    background: linear-gradient(rgba(2, 131, 145, 0.9), rgba(2, 131, 145, 0.9)), url('heroimage.webp');
    background-size: cover;
    padding: 100px 0;
    color: var(--branco);
    text-align: center;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-hero {
    background: var(--laranja);
    color: var(--branco);
    padding: 18px 35px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 25px;
    display: inline-block;
    transition: transform 0.3s;
}

.btn-hero:hover { transform: scale(1.05); }

/* Marquee */
.marquee-section {
    background: var(--ciano);
    padding: 40px 0;
    overflow: hidden;
}

.marquee {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.marquee-content {
    display: flex;
    gap: 20px;
    padding-right: 20px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.card {
    background: var(--creme);
    padding: 20px;
    border-radius: 12px;
    min-width: 220px;
    text-align: center;
}

.card span { font-size: 40px; display: block; margin-bottom: 10px; }
.card h3 { font-size: 16px; color: var(--ciano); }

/* Sobre */
.sobre { padding: 80px 0; text-align: center; }
.sobre h2 { color: var(--ciano); font-size: 36px; margin-bottom: 20px; }
.sobre p { max-width: 800px; margin: 0 auto; font-size: 18px; line-height: 1.8; }

/* Parceiros Section */
.parceiros-section {
    background-color: var(--creme);
    padding: 100px 0;
}

.bar-parceiros {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.parceiros-col { flex: 1; }

.parceiros-col h4 {
    color: var(--ciano);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 800;
}

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.logos-grid img {
    height: 50px;
    max-width: 150px;
    transition: transform 0.3s ease;
}

.divisor-vertical {
    width: 5px;
    background-color: var(--ciano);
    align-self: stretch;
    opacity: 0.2;
}

/* CTA Final */
.cta-final {
    background: var(--creme);
    padding: 80px 0;
    border-top: 1px solid rgba(2, 131, 145, 0.1);
}

.cta-final .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-text h2 { color: var(--ciano); font-size: 32px; margin-bottom: 10px; }
.cta-text p { color: var(--ciano); font-size: 18px; font-weight: 600; }

/* Grid Serviços */
.page-header {
    background: var(--ciano);
    color: var(--branco);
    padding: 80px 0;
    text-align: center;
}

.grid-servicos .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 80px 20px;
}

.servico-item {
    background: var(--branco);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(2, 131, 145, 0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.servico-item span { font-size: 40px; margin-bottom: 20px; display: block; }
.servico-item h3 { color: var(--ciano); margin-bottom: 15px; }

/* Footer */
.footer {
    background: var(--ciano);
    color: var(--branco);
    padding: 60px 0;
    text-align: center;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.logo-footer { height: 50px; }

.footer-ig {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--branco);
    transition: opacity 0.3s;
}

.footer-ig:hover { opacity: 0.8; }

.footer-ig svg {
    width: 32px;
    height: 32px;
    fill: var(--laranja);
}

.footer-ig h2 {
    font-size: 24px;
    font-weight: 800;
}

.footer p {
    font-size: 14px;
    opacity: 0.7;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .hamburger { display: block; }

    .nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--creme);
        padding: 100px 40px;
        gap: 25px;
        transition: 0.4s ease-in-out;
        box-shadow: -10px 0 20px rgba(0,0,0,0.1);
        z-index: 1050;
    }

    .nav.active { right: 0; }
    .nav a { margin-left: 0; font-size: 20px; }

    .cta-final .container {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 { font-size: 32px; }
    .hero { padding: 60px 0; }

    .bar-parceiros {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }

    .divisor-vertical { display: none; }
    .logos-grid img { height: 40px; }
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 75px;
    height: 75px;
    bottom: 30px;
    right: 30px;
    background-color: var(--laranja);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}
/* Forçar o estilo do link do endereço */
.footer-address a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none; /* Remove o sublinhado */
    color: #ffffff;        /* Define a cor como branca */
    font-size: 16px;
    transition: opacity 0.3s;
}

/* Garante que o estado de visitado ou clicado não mude a cor */
.footer-address a:visited, 
.footer-address a:active, 
.footer-address a:link {
    color: #ffffff;
}

/* Opcional: mantemos o hover apenas para dar um feedback visual */
.footer-address a:hover { 
    opacity: 0.8; 
    text-decoration: none; /* Garante que nem no hover sublinhe */
}
/* Essa porra de rodapé me deu muito trabalho hoje sabia? Nossa que merda dificil hein? */