/* Reset e Base */
* {
    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: #2c3e50;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow-x: hidden;
}

/* Scrollbar Colorida */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #007bff 0%, #28a745 50%, #ffc107 100%);
    border-radius: 6px;
    border: 2px solid #fff;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #0056b3 0%, #1e7e34 50%, #e0a800 100%);
}

/* Variáveis CSS */
:root {
    --primary-blue: #007bff;
    --primary-green: #28a745;
    --primary-yellow: #ffc107;
    --dark-blue: #0056b3;
    --dark-green: #1e7e34;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: all 0.3s ease;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 50%, var(--primary-yellow) 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    min-height: 70px;
}

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

.logo:hover {
    transform: scale(1.05);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.nav-bar {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--primary-yellow);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: width 0.3s ease;
}

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

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn-phone,
.btn-whatsapp-header {
    padding: 10px 20px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
}

.btn-phone {
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-600) 100%);
    color: var(--white);
}

.btn-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
}

.btn-whatsapp-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(40, 167, 69, 0.3);
}

/* Hero Section */
.hero {
    margin-top: 70px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 50%, var(--primary-yellow) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 15px 30px;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 200px;
    justify-content: center;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #ff8c00 100%);
    color: var(--gray-800);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-cta-secondary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.emoji-animation {
    font-size: 4rem;
    animation: bounce 2s infinite;
}

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

.whatsapp-link {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 160px;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-link:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 12px 25px rgba(40, 167, 69, 0.4);
}

/* SEO Content */
.seo-content {
    padding: 80px 0;
    background: var(--white);
}

.seo-content .container {
    max-width: 900px;
}

.seo-content h2 {
    font-size: 2rem;
    color: var(--gray-800);
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-blue);
    position: relative;
}

.seo-content h2::before {
    content: '🧼';
    position: absolute;
    left: -40px;
    top: 0;
    font-size: 1.5rem;
    opacity: 0.7;
}

.seo-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-600);
}

.btn-whatsapp-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 12px 25px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: bold;
    margin: 30px 0;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.btn-whatsapp-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(40, 167, 69, 0.3);
}

/* Maps Section */
.maps-section {
    padding: 60px 0;
    background: var(--gray-100);
}

.maps-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--gray-800);
    margin-bottom: 20px;
}

.maps-section p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 40px;
}

.map-container {
    display: flex;
    justify-content: center;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border: none;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-600) 100%);
    color: var(--white);
    padding: 60px 0 20px 0;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-yellow);
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-green);
}

.footer-section p,
.footer-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li::before {
    content: '✓ ';
    color: var(--primary-green);
    font-weight: bold;
}

.footer-links {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-400);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        gap: 15px;
        padding: 10px 20px;
    }

    .nav-bar {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-buttons {
        gap: 10px;
    }

    .btn-phone,
    .btn-whatsapp-header {
        padding: 8px 15px;
        font-size: 0.8rem;
        min-width: 100px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        min-width: 180px;
    }

    .hero-placeholder {
        width: 200px;
        height: 200px;
    }

    .emoji-animation {
        font-size: 3rem;
    }

    .seo-content h2::before {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo {
        font-size: 1.0rem;
    }

    .nav-bar {
        gap: 15px;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .hero {
        padding: 50px 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        padding: 12px 20px;
        font-size: 1rem;
        min-width: 160px;
    }

    .seo-content {
        padding: 50px 0;
    }

    .seo-content h2 {
        font-size: 1.7rem;
    }

    .maps-section {
        padding: 40px 0;
    }

    .main-footer {
        padding: 40px 0 20px 0;
    }
}

/* Micro-animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* Print Styles */
@media print {
    .main-header,
    .whatsapp-float,
    .hero-buttons,
    .btn-whatsapp-cta {
        display: none !important;
    }

    body {
        background: white !important;
    }

    .seo-content {
        color: black !important;
    }
}

/* ===== ESTILOS CRIATIVOS PARA LINKS DO MAPA DO SITE ===== */

/* Container das seções do mapa do site */
.sitemap-section {
    margin-bottom: 3rem;
}

.city-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.city-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,123,255,0.1), transparent);
    transition: left 0.6s ease;
}

.city-section:hover::before {
    left: 100%;
}

.city-section:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    border-color: var(--primary-blue);
}

.city-section h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
}

.city-section h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    border-radius: 2px;
    transition: width 0.4s ease;
}

.city-section:hover h2::after {
    width: 100%;
}

/* Categorias de serviço */
.service-category {
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(248,249,250,0.9) 100%);
    border-radius: 15px;
    padding: 1.5rem;
    border-left: 5px solid var(--primary-blue);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(0,123,255,0.05) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-category:hover::before {
    transform: translateX(100%);
}

.service-category:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(0,123,255,0.2);
    border-left-color: var(--primary-green);
}

.service-category h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.service-category:hover h3 {
    color: var(--primary-green);
    transform: scale(1.05);
}

/* Lista de serviços */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.8rem;
}

.service-list li {
    position: relative;
    overflow: hidden;
}

.service-list a {
    display: block;
    padding: 1rem 1.2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transform: translateY(0);
}

.service-list a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,123,255,0.1), rgba(40,167,69,0.1), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.service-list a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--primary-blue);
    transform: translateY(-50%);
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 2;
}

.service-list a:hover::before {
    left: 100%;
}

.service-list a:hover {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    box-shadow: 0 8px 25px rgba(0,123,255,0.25);
    transform: translateY(-5px) scale(1.02);
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
}

.service-list a:hover::after {
    opacity: 1;
    border-top-color: var(--primary-green);
    right: 10px;
}

/* Efeitos especiais para diferentes tipos de serviço */
.service-category:nth-child(1) .service-list a { /* Limpeza de Sofá */
    border-left: 4px solid #007bff;
}

.service-category:nth-child(1) .service-list a:hover {
    border-left-color: #0056b3;
    box-shadow: 0 8px 25px rgba(0,123,255,0.3);
}

.service-category:nth-child(2) .service-list a { /* Higienização de Estofados */
    border-left: 4px solid #28a745;
}

.service-category:nth-child(2) .service-list a:hover {
    border-left-color: #1e7e34;
    box-shadow: 0 8px 25px rgba(40,167,69,0.3);
}

.service-category:nth-child(3) .service-list a { /* Higienização de Sofá */
    border-left: 4px solid #ffc107;
}

.service-category:nth-child(3) .service-list a:hover {
    border-left-color: #e0a800;
    box-shadow: 0 8px 25px rgba(255,193,7,0.3);
}

.service-category:nth-child(4) .service-list a { /* Impermeabilização */
    border-left: 4px solid #17a2b8;
}

.service-category:nth-child(4) .service-list a:hover {
    border-left-color: #117a8b;
    box-shadow: 0 8px 25px rgba(23,162,184,0.3);
}

.service-category:nth-child(5) .service-list a { /* Limpa Estofados */
    border-left: 4px solid #fd7e14;
}

.service-category:nth-child(5) .service-list a:hover {
    border-left-color: #e8680f;
    box-shadow: 0 8px 25px rgba(253,126,20,0.3);
}

.service-category:nth-child(6) .service-list a { /* Limpeza de Estofado */
    border-left: 4px solid #6f42c1;
}

.service-category:nth-child(6) .service-list a:hover {
    border-left-color: #5a32a3;
    box-shadow: 0 8px 25px rgba(111,66,193,0.3);
}

.service-category:nth-child(7) .service-list a { /* Limpador de Sofá */
    border-left: 4px solid #dc3545;
}

.service-category:nth-child(7) .service-list a:hover {
    border-left-color: #bd2130;
    box-shadow: 0 8px 25px rgba(220,53,69,0.3);
}

/* Animação de entrada para os links */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-list li {
    animation: slideInUp 0.6s ease-out forwards;
}

.service-list li:nth-child(1) { animation-delay: 0.1s; }
.service-list li:nth-child(2) { animation-delay: 0.2s; }
.service-list li:nth-child(3) { animation-delay: 0.3s; }
.service-list li:nth-child(4) { animation-delay: 0.4s; }
.service-list li:nth-child(5) { animation-delay: 0.5s; }
.service-list li:nth-child(6) { animation-delay: 0.6s; }
.service-list li:nth-child(7) { animation-delay: 0.7s; }

/* Responsividade */
@media (max-width: 768px) {
    .service-list {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .city-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .service-category {
        padding: 1rem;
    }

    .service-list a {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .city-section:hover {
        transform: translateY(-5px) scale(1.01);
    }

    .service-category:hover {
        transform: translateX(5px);
    }

    .service-list a:hover {
        transform: translateY(-3px) scale(1.01);
    }
}

@media (max-width: 480px) {
    .city-section h2 {
        font-size: 1.8rem;
    }

    .service-category h3 {
        font-size: 1.2rem;
    }

    .service-list a {
        font-size: 0.85rem;
        padding: 0.7rem 0.8rem;
    }
}

/* Efeitos de foco para acessibilidade */
.service-list a:focus {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
    border-color: var(--primary-blue);
}

/* Animação de pulsação para links especiais */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 4px 15px rgba(0,0,0,0.08), 0 0 0 0 rgba(0,123,255,0.4);
    }
    50% {
        box-shadow: 0 4px 15px rgba(0,0,0,0.08), 0 0 0 10px rgba(0,123,255,0);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0,0,0,0.08), 0 0 0 0 rgba(0,123,255,0);
    }
}

.service-list a:hover {
    animation: pulse-glow 2s infinite;
}