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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header */
header {
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #0077cc;
}

/* Seção Hero */
.hero {
    position: relative;
    background: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: left;
    padding-top: 0;
}

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

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
    margin-left: 0;
    padding-left: 20px;
}

.logo-container {
    margin-bottom: 30px;
}

.hero-logo {
    height: 60px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.3;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 570px;
}

.btn-primary {
    display: inline-block;
    background-color: #0077cc;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #005fa3;
}

/* Seção de Serviços */
.services {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .subtitle {
    color: #0077cc;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    color: #0077cc;
    font-size: 2.5rem;
    font-weight: 700;
}

.services-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 5px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e6e6e6;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-img {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #0077cc;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Seção Sobre (Nossa História) */
.about {
    padding: 80px 0;
    background-color: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text .subtitle {
    color: #555;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.about-text h2 {
    color: #0077cc;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.about-text p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-text .btn-primary {
    margin-top: 20px;
}

.about-text .social-about {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.about-text .social-about .social-icon {
    display: inline-flex;
    align-items: center;
    color: #0077cc;
    font-weight: 500;
    transition: color 0.3s;
}

.about-text .social-about .social-icon i {
    margin-right: 8px;
    font-size: 18px;
}

.about-text .social-about .social-icon:hover {
    color: #005fa3;
}

.about-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.image-frame {
    background-color: transparent;
    border: none;
    padding: 30px;
    border-radius: 0;
    box-shadow: none;
    max-width: 400px;
}

.image-frame img {
    width: 100%;
    height: auto;
}

/* Seção Antes e Depois */
.before-after {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.before-after h2 {
    color: #0077cc;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 0 20px;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slide {
    min-width: calc(33.333% - 20px);
    box-sizing: border-box;
    padding: 0 10px;
    flex: 0 0 calc(33.333% - 20px);
}

.slide img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    color: #0077cc;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background-color: #0077cc;
    color: #fff;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Seção de Depoimentos */
.testimonials {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.testimonials .subtitle {
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.testimonials h2 {
    color: #0077cc;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    text-align: center;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-rating {
    color: #f9c744;
    font-size: 1.2rem;
    margin-top: 15px;
}

.testimonial-rating i {
    margin: 0 2px;
}

.google-reviews {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.google-badge {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
}

.google-badge i {
    color: #4285F4;
    font-size: 1.6rem;
    margin-right: 8px;
}

.btn-secondary {
    display: inline-block;
    background-color: #fff;
    color: #0077cc;
    border: 2px solid #0077cc;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #0077cc;
    color: #fff;
}

/* Seção de Números */
.numbers {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.numbers h2 {
    color: #0077cc;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.numbers h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #0077cc;
    margin: 10px auto 0;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 50px auto 0;
    padding: 40px 30px;
    background-color: #0077cc;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 119, 204, 0.3);
}

.stat-item {
    flex: 1;
    padding: 0 15px;
    color: #fff;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.9;
}

.stat-divider {
    width: 1px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.3);
}

.counter {
    display: inline-block;
}

/* Seção de Perguntas Frequentes (FAQ) */
.faq {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.faq .subtitle {
    color: #0077cc;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.faq h2 {
    color: #0077cc;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.faq h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #0077cc;
    margin: 10px auto 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e6e6e6;
}

.faq-question {
    padding: 20px;
    background-color: #1a62a3;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.faq-question h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    background-color: #fff;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    text-align: left;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px;
}

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

/* Seção CTA (Call to Action) */
.cta {
    position: relative;
    background: url('../img/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.cta .overlay {
    background: rgba(0, 59, 112, 0.85);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta .subtitle {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
    display: block;
}

.cta h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.cta .btn-primary {
    background-color: #0077cc;
    border: 2px solid #fff;
    padding: 14px 35px;
    font-size: 1.1rem;
}

.cta .btn-primary:hover {
    background-color: #fff;
    color: #0077cc;
}

/* Footer */
footer {
    background-color: #0077cc;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.social-links {
    margin-top: 10px;
}

.social-links a {
    color: #fff;
    margin: 0 10px;
    font-size: 16px;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.8;
}

.social-links i {
    margin-right: 5px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-float i {
    z-index: 1001;
}

/* Instagram Float */
.instagram-float {
    position: fixed;
    bottom: 20px;
    right: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #fff;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s;
}

.instagram-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-float .pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    z-index: 1;
    opacity: 0.8;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Responsivo */
@media (max-width: 992px) {
    .services-container {
        justify-content: center;
    }
    
    .service-card {
        flex-basis: calc(50% - 30px);
    }
    
    .slide {
        min-width: calc(50% - 20px);
        flex: 0 0 calc(50% - 20px);
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text, .about-image {
        width: 100%;
        text-align: center;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .stats-container {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .stat-item {
        padding: 20px 0;
    }
    
    .stat-divider {
        width: 80%;
        height: 1px;
    }
    
    .faq h2 {
        font-size: 2.2rem;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    nav ul {
        display: none; /* Simplificado para este exemplo */
    }
    
    .service-card {
        flex-basis: 100%;
    }
    
    .slide {
        min-width: 100%;
        flex: 0 0 100%;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .before-after h2 {
        font-size: 2rem;
    }
    
    .slider-btn, .testimonial-slider-btn {
        width: 35px;
        height: 35px;
    }
    
    .testimonials h2 {
        font-size: 2rem;
    }
    
    .numbers h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .faq h2 {
        font-size: 2rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
} 

/* Seção Empresa vs Diarista */
.company-vs-cleaner {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.company-vs-cleaner::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.company-vs-cleaner .container {
    position: relative;
    z-index: 1;
}

.comparison-container {
    display: flex;
    gap: 40px;
    align-items: stretch;
    margin: 60px 0;
    position: relative;
}

.comparison-card {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0077cc, #005fa3);
}

.empresa-card::before {
    background: linear-gradient(90deg, #28a745, #20c997);
}

.diarista-card::before {
    background: linear-gradient(90deg, #dc3545, #fd7e14);
}

.comparison-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.card-header i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.empresa-card .card-header i {
    color: #28a745;
}

.diarista-card .card-header i {
    color: #dc3545;
}

.card-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c3e50;
}

.badge-pro, .badge-basic {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-pro {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.badge-basic {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    color: white;
}

.benefits-list, .limitations-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li, .limitations-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.benefits-list li {
    background: rgba(40, 167, 69, 0.05);
    border-left: 4px solid #28a745;
}

.limitations-list li {
    background: rgba(220, 53, 69, 0.05);
    border-left: 4px solid #dc3545;
}

.benefits-list li:hover {
    background: rgba(40, 167, 69, 0.1);
    transform: translateX(5px);
}

.limitations-list li:hover {
    background: rgba(220, 53, 69, 0.1);
    transform: translateX(5px);
}

.benefits-list li i {
    color: #28a745;
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.limitations-list li i {
    color: #dc3545;
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.benefits-list li strong, .limitations-list li strong {
    color: #2c3e50;
    margin-right: 5px;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    position: relative;
}

.vs-divider span {
    background: linear-gradient(135deg, #0077cc, #005fa3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.vs-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.cta-section {
    background: linear-gradient(135deg, #0077cc, #005fa3);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    color: white;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-section .btn-primary {
    background: white;
    color: #0077cc;
    font-weight: 700;
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #0077cc;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsivo para a seção de comparação */
@media (max-width: 992px) {
    .comparison-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .vs-divider {
        width: 100%;
        height: 60px;
        margin: 20px 0;
    }
    
    .vs-divider span {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .comparison-card {
        padding: 30px 20px;
    }
    
    .cta-section {
        padding: 40px 30px;
    }
    
    .cta-section h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .company-vs-cleaner {
        padding: 60px 0;
    }
    
    .benefits-list li, .limitations-list li {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .card-header h3 {
        font-size: 1.2rem;
    }
    
    .card-header i {
        font-size: 2.5rem;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-section h3 {
        font-size: 1.6rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
}