/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

/* Header */
header {
    background: linear-gradient(135deg, #10FFE3 0%, #00B4D8 100%);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(16, 255, 227, 0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo a {
    text-decoration: none;
    color: #ffffff;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/empresa-desentupidor-profissional-trabalhando-juiz-de-fora-mg.webp') center/cover no-repeat;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #10FFE3 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Botões CTA */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-primary,
.cta-secondary,
.cta-tertiary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: linear-gradient(135deg, #10FFE3 0%, #00B4D8 100%);
    color: #000000;
    box-shadow: 0 4px 15px rgba(16, 255, 227, 0.4);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(16, 255, 227, 0.6);
}

.cta-secondary {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A24 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 107, 0.6);
}

.cta-tertiary {
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.4);
}

.cta-tertiary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(78, 205, 196, 0.6);
}

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

.whatsapp-float a {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    font-weight: 600;
}

.whatsapp-float a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-text {
    margin-left: 0.5rem;
}

/* Conteúdo Principal */
main {
    padding: 4rem 0;
}

.seo-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-section {
    margin-bottom: 4rem;
    background: linear-gradient(135deg, rgba(16, 255, 227, 0.05) 0%, rgba(0, 180, 216, 0.05) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(16, 255, 227, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 255, 227, 0.2);
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #10FFE3;
    position: relative;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #10FFE3 0%, #00B4D8 100%);
    border-radius: 2px;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cta-whatsapp {
    text-align: center;
    margin-top: 2rem;
}

.cta-content {
    display: inline-block;
    background: linear-gradient(135deg, #10FFE3 0%, #00B4D8 100%);
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 255, 227, 0.5);
}

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

.sitemap-container h1 {
    font-size: 3rem;
    color: #10FFE3;
    text-align: center;
    margin-bottom: 1rem;
}

.sitemap-container > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.sitemap-section {
    margin-bottom: 3rem;
    background: linear-gradient(135deg, rgba(16, 255, 227, 0.05) 0%, rgba(0, 180, 216, 0.05) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(16, 255, 227, 0.1);
}

.sitemap-section h2 {
    font-size: 2rem;
    color: #10FFE3;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(16, 255, 227, 0.3);
    padding-bottom: 0.5rem;
}

.sitemap-section ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.sitemap-section li a {
    color: #ffffff;
    text-decoration: none;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
    border: 1px solid rgba(16, 255, 227, 0.2);
}

.sitemap-section li a:hover {
    background: linear-gradient(135deg, rgba(16, 255, 227, 0.1) 0%, rgba(0, 180, 216, 0.1) 100%);
    color: #10FFE3;
    transform: translateX(5px);
}

/* Map Section */
.map-section {
    text-align: center;
    margin: 4rem 0;
}

.map-section h2 {
    font-size: 2.5rem;
    color: #10FFE3;
    margin-bottom: 2rem;
}

.map-section iframe {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(16, 255, 227, 0.3);
    max-width: 100%;
}

/* Footer */
footer {
    background: linear-gradient(135deg, rgba(16, 255, 227, 0.1) 0%, rgba(0, 180, 216, 0.1) 100%);
    border-top: 1px solid rgba(16, 255, 227, 0.2);
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: #10FFE3;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: #ffffff;
    opacity: 0.8;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #10FFE3;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(16, 255, 227, 0.2);
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Horário de Funcionamento */
.footer-content::after {
    content: "Horário de funcionamento:\A Domingo: Fechado\A Segunda-feira: 08:00–22:00\A Terça-feira: 08:00–22:00\A Quarta-feira: 08:00–22:00\A Quinta-feira: 08:00–22:00\A Sexta-feira: 08:00–22:00\A Sábado: 08:00–16:00";
    white-space: pre-line;
    display: block;
    color: #ffffff;
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(16, 255, 227, 0.2);
    text-align: center;
}

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

/* Microanimações */
.cta-primary::before,
.cta-secondary::before,
.cta-tertiary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-primary:hover::before,
.cta-secondary:hover::before,
.cta-tertiary:hover::before {
    left: 100%;
}

/* Responsividade básica */
@media (max-width: 768px) {
    .hero-content {
        max-width: none !important;
        width: 100vw !important;
        padding: 0 1rem;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        box-sizing: border-box;
    }

    .hero h1 {
        font-size: 2.5rem;
        width: 100%;
        text-align: center;
        word-break: break-word;
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
        word-wrap: break-word;
        hyphens: auto;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .content-section {
        padding: 2rem 1rem;
    }

    .sitemap-section ul {
        grid-template-columns: 1fr;
    }
}

/* Desktop grande */
@media (min-width: 1200px) {
    .hero h1 {
        font-size: 4rem;
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        text-align: center;
        padding: 0 2rem;
        box-sizing: border-box;
    }

    .hero p {
        font-size: 1.4rem;
    }

    .content-section {
        padding: 4rem;
    }

    .sitemap-section ul {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}
