:root {
    --primary-color: #3A6044;    /* Verde clásico */
    --secondary-color: #B8AE94;  /* Beige elegante */
    --accent-color: #2C323B;     /* Gris oscuro */
    --gray-color: #A0A0A0;       /* Gris */
    --text-dark: #2C323B;
    --text-light: #fff;
    --background-light: #fff;
    --background-dark: #2C323B;
    --background-accent: #B8AE94;
    --gray-100: #333333;         /* Darkest light gray */
    --gray-200: #2E2E2E;         /* Very dark gray */
    --gray-300: #292929;         /* Dark gray */
    --gray-400: #242424;         /* Darker gray */
    --gray-500: #1F1F1F;         /* Very dark gray */
    --gray-600: #1A1A1A;         /* Almost black gray */
    --gray-700: #151515;         /* Darker almost black */
    --gray-800: #121212;         /* Very dark almost black */
    --gray-900: #0F0F0F;         /* Nearly black */
    --black: #000000;            /* Pure black */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'HK Modular', sans-serif;
}

body {
    color: var(--text-dark);
    background: var(--background-light);
    line-height: 1.6;
}

header {
    background: var(--primary-color) !important;
    padding: 1rem 2rem;
    width: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.company-name {
    color: var(--secondary-color) !important;
    font-size: 2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.company-name:hover {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3.5rem;
    position: relative;
}

.dropdown {
    position: relative;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff !important;
    min-width: 200px;
    padding: 0.8rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.dropdown:hover .submenu {
    display: block;
}

.submenu li {
    list-style: none;
    padding: 0.3rem 0;
}

.submenu a {
    display: block;
    padding: 0.6rem 1.2rem;
    color: #000 !important;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.submenu a:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

/* Add a small arrow indicator for the dropdown */
.dropdown > a::after {
    content: '▼';
    font-size: 0.7em;
    margin-left: 5px;
    vertical-align: middle;
    color: var(--secondary-color);
}

.nav-links a {
    color: var(--secondary-color) !important;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-links a:hover {
    color: var(--text-light) !important;
    text-shadow: 0 0 8px rgba(59, 130, 246, 0.3);
}

.user-icon {
    color: var(--text-light);
    font-size: 2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-icon:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Introductory Section Styles */
.intro-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--gray-700) 0%, var(--gray-800) 100%);
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(31, 31, 31, 0.4) 0%,
        rgba(26, 26, 26, 0.4) 25%,
        rgba(21, 21, 21, 0.4) 50%,
        rgba(18, 18, 18, 0.4) 75%,
        rgba(15, 15, 15, 0.4) 100%);
    z-index: 0;
}

.intro-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.intro-text {
    flex: 1;
    max-width: 600px;
}

.intro-text h2 {
    color: var(--text-light);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'HK Modular', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.intro-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-family: 'HK Modular', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.intro-icon {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-icon i {
    font-size: 8rem;
    color: var(--primary-color);
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        height: 80px;
    }
    
    .company-name {
        font-size: 1.6rem;
    }
    
    .intro-content {
        flex-direction: column;
        text-align: center;
    }

    .intro-text {
        max-width: 100%;
    }

    .intro-icon i {
        font-size: 6rem;
    }

    .nav-links {
        gap: 2rem;
    }
}

/* Services Section Styles */
.services-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--gray-500) 0%, var(--gray-600) 100%);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-title h2 {
    color: var(--secondary-color);
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-title p {
    color: var(--accent-color);
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 1.5rem auto 0;
    line-height: 1.6;
}

/* Responsive adjustments for title */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .section-title p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

.services-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding: 2rem 0;
}

.service-card {
    background: var(--primary-color);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(106, 153, 78, 0.15) 0%,
        rgba(106, 153, 78, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(106, 153, 78, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 3.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-content h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-content p {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.3s ease;
    z-index: -1;
}

.read-more-btn:hover {
    color: var(--text-light);
}

.read-more-btn:hover::before {
    left: 0;
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon i {
        font-size: 3rem;
    }

    .service-content h3 {
        font-size: 1.5rem;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 2.5rem 0.5rem;
    background: linear-gradient(135deg, var(--gray-400) 0%, var(--gray-500) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section .section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding: 0 1rem;
}

.testimonials-section .title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonials-section .title-decoration .line {
    height: 2px;
    width: 100px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.testimonials-section .title-decoration .icon {
    color: var(--primary-color);
    font-size: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.testimonials-section .section-title h2 {
    color: var(--text-light);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(45deg, var(--text-light), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonials-section .section-title p {
    color: var(--text-light);
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 1.5rem auto 0;
    line-height: 1.6;
    font-style: italic;
}

/* Slider de testimonios múltiples */
.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 0.5rem;
}

.testimonials-slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0;
}

.testimonial-card {
    min-width: 320px;
    max-width: 320px;
    flex: 0 0 320px;
    scroll-snap-align: center;
    margin: 0;
    background: var(--primary-color);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    border: 1px solid rgba(106, 153, 78, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.client-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.client-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.3rem;
}

.client-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.client-details h4 {
    color: var(--accent-color) !important;
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
    text-align: center;
}

.rating {
    color: var(--accent-color);
    font-size: 1rem;
    margin-top: 0.2rem;
    text-align: center;
}

.testimonial-text {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.5;
    font-style: italic;
    margin: 0;
    text-align: center;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.slider-btn {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.slider-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* Responsive para el slider */
@media (max-width: 768px) {
    .testimonials-container {
        padding: 0 1rem;
    }
    
    .testimonials-slider {
        gap: 1rem;
    }
    
    .testimonial-card {
        min-width: 250px;
        padding: 1.2rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 1.5rem 0.2rem;
    }
    .testimonials-container {
        padding: 0 0.2rem;
    }
    .testimonials-slider {
        gap: 0;
        padding: 0.5rem 0;
    }
    .testimonial-card {
        min-width: 90vw;
        max-width: 90vw;
        flex: 0 0 90vw;
        margin: 0 5vw 0 0;
        padding: 0.8rem;
    }
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

/* FAQ Section Styles acorde a la página principal */
.faq-section {
    background: linear-gradient(135deg, var(--gray-700) 0%, var(--gray-800) 100%) !important;
    padding: 5rem 2rem;
}

.faq-title, .faq-section h3 {
    text-align: center;
    color: var(--text-light);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.2);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.faq-question {
    background: #fff !important;
    color: var(--primary-color) !important;
    padding: 1.2rem 2rem;
    width: 100%;
    text-align: left;
    border: none;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.faq-question:hover, .faq-question.active {
    background: var(--primary-color);
    color: var(--text-light);
}

.faq-answer {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0 2rem 1.2rem 2rem;
    font-size: 1.05rem;
    line-height: 1.7;
    transition: background 0.3s;
}

.faq-answer p {
    color: #B8AE94 !important;
}

/* Rating Form Section Styles */
.rating-form-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--gray-500) 0%, var(--gray-600) 100%);
    position: relative;
}

.rating-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--primary-color);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(106, 153, 78, 0.1);
}

.rating-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid var(--gray-600);
    background: var(--gray-800);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(106, 153, 78, 0.3);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Star Rating Styles */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.5rem;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    font-size: 2rem;
    color: var(--gray-600);
    transition: all 0.3s ease;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: var(--primary-color);
    transform: scale(1.1);
}

.star-rating label i {
    transition: all 0.3s ease;
}

.star-rating label:hover i,
.star-rating label:hover ~ label i,
.star-rating input:checked ~ label i {
    transform: rotate(15deg);
}

/* Submit Button Styles */
.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    align-self: center;
}

.submit-btn:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
    border: 2px solid var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(106, 153, 78, 0.3);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .rating-form-container {
        padding: 1.5rem;
    }

    .form-group label {
        font-size: 1rem;
    }

    .star-rating label {
        font-size: 1.8rem;
    }

    .submit-btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Footer Styles */
.footer {
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-section h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

.footer-logo h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
}

.company-description {
    color: var(--text-light);
    opacity: 0.8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-list,
.hours-list,
.links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.contact-list a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-list a:hover {
    color: var(--gray-color);
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-list li:last-child {
    border-bottom: none;
}

.days {
    color: var(--text-light);
    font-weight: 500;
}

.hours {
    color: var(--text-light);
    opacity: 0.8;
}

.links-list a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.3rem 0;
}

.links-list a:hover {
    color: var(--gray-color);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.4rem;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-700);
    border: 2px solid var(--primary-color);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Specific styles for each social media icon */
.social-links a[aria-label="Facebook"]:hover {
    color: #1877F2;
    background: transparent;
    border-color: #1877F2;
}

.social-links a[aria-label="Instagram"]:hover {
    color: #E4405F;
    background: transparent;
    border-color: #E4405F;
}

.social-links a[aria-label="WhatsApp"]:hover {
    color: #25D366;
    background: transparent;
    border-color: #25D366;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-logo {
        justify-content: center;
    }

    .contact-list li {
        justify-content: center;
    }

    .hours-list li {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .social-links {
        gap: 1.5rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 1rem;
    }
    .faq-title, .faq-section h3 {
        font-size: 1.5rem;
    }
    .faq-question {
        padding: 1rem 1rem;
        font-size: 1rem;
    }
    .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }
}

/* Elimino reglas que forzaban fondo blanco y texto negro */
/* Fondo blanco para las secciones principales */
.intro-section,
.services-section,
.testimonials-section,
.faq-section,
.rating-form-section {
    background: var(--background-light) !important;
}

.service-card,
.testimonial-card,
.faq-item,
.rating-form-container {
    background: var(--secondary-color) !important;
    color: var(--accent-color) !important;
    border: 1.5px solid var(--primary-color);
}

.section-title h2,
.intro-section h2,
.faq-section h3,
.rating-form-section h2 {
    color: var(--primary-color) !important;
}

.section-title p,
.intro-section p,
.faq-section p,
.rating-form-section p,
.service-content h3,
.service-content p,
.service-features li,
.testimonial-text,
.faq-answer,
.form-group label {
    color: var(--accent-color) !important;
}

.read-more-btn,
.submit-btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.read-more-btn:hover,
.submit-btn:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
    border: 2px solid var(--accent-color);
}

.footer {
    background: var(--accent-color);
    color: var(--secondary-color);
}

.footer-section h4,
.footer-logo h3 {
    color: var(--primary-color);
}

.links-list a,
.contact-list a {
    color: var(--primary-color);
}

.links-list a:hover,
.contact-list a:hover {
    color: var(--secondary-color);
}

.social-links a {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* Colores de texto alternos para intercalar */
.text-primary {
    color: var(--primary-color) !important;
}
.text-secondary {
    color: var(--secondary-color) !important;
}
.text-tertiary {
    color: var(--accent-color) !important;
}
.text-quaternary {
    color: var(--text-light) !important;
}

.faq-question,
.faq-answer {
    color: var(--text-dark) !important;
}

.faq-section p {
    color: var(--text-dark) !important;
}

.intro-section h2,
.intro-section p {
    color: var(--text-dark) !important;
}

.testimonials-section {
    background: #fff !important;
}

/* --- HAMBURGER MENU --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2000;
}
.menu-toggle .bar {
    width: 28px;
    height: 4px;
    background: var(--primary-color);
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
}
@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
    }
    .nav-right {
        display: none;
        position: absolute;
        top: 80px;
        right: 0;
        background: var(--background-light);
        width: 100vw;
        box-shadow: 0 8px 24px rgba(0,0,0,0.10);
        flex-direction: column;
        align-items: flex-end;
        padding: 2rem 1.5rem 1.5rem 1.5rem;
        z-index: 1500;
    }
    .nav-right.active {
        display: flex;
    }
    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        align-items: flex-end;
    }
    .logo-container {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }
    .logo {
        height: 55px;
        max-width: 55px;
    }
    .company-name {
        font-size: 1.1rem;
        word-break: break-word;
        max-width: 120px;
    }
    .nav-right {
        width: 80vw;
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
        right: 0.5rem;
        top: 65px;
        border-radius: 0 0 12px 12px;
    }
    .nav-links {
        font-size: 1rem;
        gap: 1rem;
    }
    .nav-links a {
        font-size: 1.05rem;
        padding: 0.7rem 0.8rem;
    }
    .submenu {
        position: static;
        display: none;
        background: var(--background-light) !important;
        box-shadow: none;
        min-width: 100%;
        padding: 0.2rem 0;
        margin-top: 0.2rem;
        border-radius: 8px;
        z-index: 2001;
    }
    .dropdown.active .submenu,
    .dropdown:focus-within .submenu {
        display: block;
    }
    .submenu li {
        padding: 0.2rem 0;
    }
    .submenu a {
        font-size: 0.98rem;
        padding: 0.6rem 1.2rem;
        color: var(--primary-color) !important;
    }
    .submenu a:hover {
        background: var(--primary-color) !important;
        color: var(--secondary-color) !important;
    }
}
@media (max-width: 500px) {
    .logo {
        height: 40px;
        max-width: 40px;
    }
    .company-name {
        font-size: 0.95rem;
        max-width: 90px;
    }
}

/* --- HAMBURGER MENU ICON STYLE --- */
.menu-toggle i {
    font-size: 2.3rem;
    color: #fff;
    transition: color 0.3s, transform 0.3s;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.12));
}
.menu-toggle:hover i,
.menu-toggle:focus i {
    color: #fff;
    transform: scale(1.15) rotate(10deg);
}
.menu-toggle:active i {
    color: #fff;
    transform: scale(0.95);
}
.menu-toggle i.fa-xmark {
    color: #fff;
    transition: color 0.3s, transform 0.3s;
}

@media (max-width: 900px) {
    .logo {
        height: 75px;
        max-width: 75px;
    }
    .company-name {
        font-size: 1.5rem;
        max-width: 200px;
    }
}
@media (max-width: 500px) {
    .logo {
        height: 55px;
        max-width: 55px;
    }
    .company-name {
        font-size: 1.15rem;
        max-width: 120px;
    }
}

.section-divider {
    width: 100%;
    height: 4px;
    background: #2C323B;
    border: none;
    margin: 0 auto 3rem auto;
    border-radius: 2px;
}

.faq-accordion .faq-item:last-child .faq-answer p {
    color: #000 !important;
}

.faq-accordion .faq-item:nth-child(2) .faq-answer p {
    color: #fff !important;
}

.faq-accordion .faq-item:first-child .faq-answer p {
    color: #fff !important;
}

.faq-accordion .faq-item:nth-child(3) .faq-answer p {
    color: #fff !important;
}

.faq-accordion .faq-item:nth-child(4) .faq-answer p {
    color: #fff !important;
}

.star-rating label i {
    color: var(--gray-600);
    transition: color 0.3s, transform 0.3s;
}
.star-rating input:checked ~ label i,
.star-rating label:hover i,
.star-rating label:hover ~ label i {
    color: #FFD700;
    transform: rotate(15deg) scale(1.1);
}
