.mobile-toggle {
    display: none;
}
.main-header {
    background: #ffffff;
    padding: 10px 5%;
    border-bottom: 1px solid #eeeeee;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.header-logo img {
    max-height: 50px;
    width: auto;
}

.main-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 5px;
    transition: color 0.3s;
}

.main-nav ul li a:hover {
    color: #5A9278;
}

.arrow-down {
    font-size: 0.7em;
    margin-left: 4px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-green {
    background: #5A9278;
    color: #fff;
    border: 1px solid #5A9278;
}

.btn-green:hover {
    background: #4a7b64;
    border-color: #4a7b64;
}

.dropdown {
    position: relative;
}
.dropdown-label:hover {
    color: #5A9278;
}
.dropdown-label {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 5px;
    transition: color 0.3s;
    cursor: pointer;
    user-select: none; 
}
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    border-radius: 8px;
    margin-top: 5px;
    z-index: 1001;
    overflow: hidden;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-weight: 500;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    color: #5A9278;
}

:root {
    --font-family: 'Poppins', sans-serif;
    --font-h1: 42px;
    --font-h2: 36px;
    --font-h3: 20px;
    --font-p: 16px;
    --font-btn: 16px;
    --color-text: #333;
    --color-text-light: #555;
    --color-green: #4a937a;
    --color-light-gray: #f9f9f9;
    --color-border: #eee;
    --color-white: #fff;
    --color-dark-text: #444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--color-text-light);
    line-height: 1.6;
    background-color: var(--color-white);
}

section {
    padding: 80px 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
h1{
    font-size: 47px;
    color: white;
    font-family: var(--font-family);
    font-weight: 900;
    margin-bottom: 20px;

}
h2 {
    font-family: var(--font-family);
    color: var(--color-dark-text);
    font-weight: 700;
    margin-bottom: 20px;
}

h3 {
    font-family: var(--font-family);
    color: var(--color-dark-text);
    font-weight: 600;
    margin-bottom: 10px;
}

h1 { font-size: var(--font-h1); }
h2 { font-size: var(--font-h2); }
h3 { font-size: var(--font-h3); }
p, li, summary { font-size: var(--font-p); }

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.why-choose-image img,
.about-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.btn {
    display: inline-block;
    font-size: var(--font-btn);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-light {
    background-color: var(--color-white);
    color: var(--color-text);
}
.btn-light:hover {
    background-color: #f0f0f0;
}

.btn-green {
    background-color: var(--color-green);
    color: var(--color-white);
}
.btn-green:hover {
    background-color: #3b7a65;
}

.hero {
    background-image: url('../images/fondoHome.jpg'); 
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    padding: 120px 0;
    text-align: center;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.google-badge {
    display: inline-block;
    background-color: rgba(20, 20, 20, 0.7);
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
}
.google-badge .star {
    color: #fbbc05;
}

.why-choose {
    background-color: var(--color-light-gray);
}

.feature-item {
    margin-bottom: 20px;
}

.feature-item p {
    margin-left: 0;
}

.tag {
    display: inline-block;
    background-color: #445250;
    color: var(--color-white);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.services {
    background-color: var(--color-light-gray);
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: left;
    margin: 40px 0;
}

.service-item {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.service-item h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-item h3::before {
    content: '✔';
    font-size: 18px;
    color: var(--color-green);
    background-color: #e0f0eb;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.reviews {
    text-align: center;
}

.map-placeholder {
    border: 2px dashed #ccc;
    padding: 40px;
    background-color: #fdfdfd;
    margin-top: 30px;
    border-radius: 8px;
}

.map-placeholder iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 8px;
}

.faq {
    background-color: var(--color-white);
}

.faq-grid {
    grid-template-columns: 1fr 2fr; 
}

details {
    border-bottom: 1px solid var(--color-border);
    padding: 18px 0;
}

summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-dark-text);
}

summary::after {
    content: '▼';
    font-size: 12px;
    color: var(--color-text-light);
    transition: transform 0.2s ease;
}

details[open] summary::after {
    transform: rotate(180deg);
}

details p {
    padding-top: 15px;
    padding-left: 10px;
}

.hero.hero-deep-clean {
    background-image: url('../images/FondoDeepCleaning.jpg'); 
}

.hero-content h1 {
    color: var(--color-white);
}

.features-grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.review-card {
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 30px;
    text-align: left;
}
.review-stars {
    color: var(--color-green);
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}
.review-card p {
    font-size: var(--font-p);
    margin-bottom: 20px;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.review-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.review-author-info strong {
    color: var(--color-dark-text);
    display: block;
    font-size: 15px;
}
.review-author-info span {
    font-size: 14px;
}

.cta-bar {
    background-color: #2f4858;
    color: var(--color-white);
    padding: 60px 0;
    text-align: center;
}
.cta-bar h2 {
    color: var(--color-white);
}
.cta-bar p {
    font-size: 20px;
    opacity: 0.9;
    margin: 0;
}

.hero.hero-move-out {
    background-image: url('../images/fondomove-in.jpg'); 
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }

    :root {
        --font-h1: 32px;
        --font-h2: 28px;
        --font-h3: 18px;
        --font-p: 15px;
    }
    
    .hero-content p {
        font-size: 18px;
    }

    .grid-2-col,
    .services-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .about-us-image {
        order: -1;
    }
    
    .faq-title {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .main-header { position: static; padding: 20px 5%; }
    .header-container { flex-direction: column; align-items: center; gap: 20px; }
    .header-logo { order: 1; }
    .header-right { order: 2; width: 100%; }
    .main-nav   { order: 3; width: 100%; }
    .btn-green { width: 100%; text-align: center; box-sizing: border-box; }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
        gap: 15px; 
    }

    .main-nav ul li a {
        display: block;
        text-align: center;
    }

    .dropdown-label {
        display: block;
        text-align: center;
    }

    .dropdown:hover .dropdown-content {
        display: none; 
    }

    .dropdown-content {
        display: none;
        position: static;
        background: none;
        box-shadow: none;
        border-radius: 0;
        margin-top: 15px;
        min-width: auto;
        overflow: visible;
        flex-direction: column;
        gap: 15px;
    }

    .mobile-toggle:checked ~ .dropdown-content {
        display: flex;
    }
    
    .dropdown-content a {
        color: #333;
        font-weight: 500;
        text-align: center;
        padding: 0;
    }
    .dropdown-content a:hover {
        background: none;
        color: #5A9278;
    }
}
@media (max-width: 768px) {
    .reviews {
        padding: 40px 5%;
    }

    .reviews h2 {
        font-size: 26px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px; 
    }
}
