:root {
    --dourado: #D4AF37;
    --dourado-escuro: #B8941C;
    --azul-marinho: #001F3F;
    --azul-marinho-claro: #003366;
    --branco: #FFFFFF;
    --cinza-claro: #F5F5F5;
    --cinza-medio: #E0E0E0;
    --verde-whatsapp: #25D366;
    --verde-whatsapp-hover: #1FB855;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--azul-marinho);
    background-color: var(--cinza-claro);
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 12px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--azul-marinho);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--dourado), var(--dourado-escuro));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dourado);
}

/* Barra de progresso no topo */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dourado), var(--verde-whatsapp));
    z-index: 10000;
    transition: width 0.3s ease;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--azul-marinho) 0%, var(--azul-marinho-claro) 50%, var(--dourado-escuro) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--dourado);
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-emoji {
    font-size: 2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/desentupidora-seven-clean-5.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--branco);
    padding: 4rem 20px;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dourado);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--verde-whatsapp), var(--verde-whatsapp-hover));
    color: var(--branco);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366; /* Cor do WhatsApp */
    color: white;
    padding: 15px 25px;
    border-radius: 50px; /* Botão arredondado */
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #1DA851;
    transform: translateY(-2px);
}

.whatsapp-button .whatsapp-icon {
    font-size: 1.5rem;
    margin-right: 10px;
    line-height: 1;
}

.whatsapp-button span {
    line-height: 1;
}

/* Seções de Conteúdo */
.seo-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.content-section {
    background: var(--branco);
    padding: 3rem 2rem;
    margin: 2rem 0;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.content-section h2 {
    color: var(--azul-marinho);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--dourado);
    display: inline-block;
}

.content-section p {
    margin-bottom: 1rem;
    text-align: justify;
    color: #333;
    line-height: 1.8;
}

.content-section ul {
    margin: 1rem 0 1rem 2rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* CTA dentro do conteúdo */
.cta-inline {
    text-align: center;
    margin: 2rem 0;
}

/* Seção do Mapa */
.map-section {
    background: var(--branco);
    padding: 3rem 2rem;
    margin: 2rem 0;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-section h2 {
    color: var(--azul-marinho);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.map-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
    border-radius: 10px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--azul-marinho) 0%, var(--azul-marinho-claro) 100%);
    color: var(--branco);
    padding: 3rem 20px 1rem;
}

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

.footer-section h3 {
    color: var(--dourado);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: var(--branco);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--dourado);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--cinza-medio);
}

/* Mapa do Site */
.sitemap-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 20px;
}

.sitemap-container h1 {
    color: var(--azul-marinho);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.sitemap-category {
    background: var(--branco);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sitemap-category h2 {
    color: var(--azul-marinho);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--dourado);
}

.sitemap-links {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.sitemap-links a {
    color: var(--azul-marinho);
    text-decoration: none;
    padding: 0.8rem 1rem;
    background: var(--cinza-claro);
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--dourado);
}

.sitemap-links a:hover {
    background: var(--dourado);
    color: var(--branco);
    transform: translateX(5px);
}

