:root {
    --primary-color: #3A6044;    /* Verde clásico */
    --secondary-color: #B8AE94;  /* Beige elegante */
    --accent-color: #2C323B;     /* Gris oscuro */
    --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: var(--gray-800);
    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: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.submenu a:hover {
    background-color: rgba(106, 153, 78, 0.1);
    color: var(--primary-color);
}

/* 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(106, 153, 78, 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);
}

/* Main Content */
.main-content {
    margin-top: 100px;
    padding: 0;
    background: var(--background-light) !important;
}

/* Intro Section Styles */
.intro-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--gray-500) 0%, var(--gray-600) 100%);
    margin-bottom: 2rem;
}

.intro-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-header {
    text-align: center;
    margin-bottom: 3rem;
}

.intro-header h1 {
    font-size: 2.8rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.intro-decoration .line {
    height: 3px;
    width: 120px;
    background: var(--primary-color);
}

.intro-decoration i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.intro-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

.intro-block {
    background: var(--secondary-color) !important;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    height: 100%;
    border: 1px solid rgba(106, 153, 78, 0.1);
}

.intro-block.main-block {
    border: 1px solid var(--gray-600);
}

.intro-block.highlight-block {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
}

.intro-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.intro-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.intro-text h2 {
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.intro-text h3 {
    font-size: 1.6rem;
    color: var(--primary-color) !important;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.highlight-block .intro-text h3 {
    color: var(--accent-color);
}

.intro-text p {
    color: var(--accent-color) !important;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.highlight-block .intro-text p {
    color: var(--text-light);
}

.intro-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.8rem;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.highlight-block .intro-icon {
    background: var(--accent-color);
    color: var(--primary-color);
}

.intro-block:hover .intro-icon {
    transform: scale(1.1);
}

/* Services Section Styles */
.services-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--gray-600) 0%, var(--gray-700) 100%);
    margin-top: 2rem;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header h2 {
    font-size: 2.4rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.services-description {
    max-width: 900px;
    margin: 0 auto 2rem;
    color: var(--text-light);
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
}

.discount-rates {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 0 auto 4rem;
    max-width: 1000px;
}

.discount-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 2rem 2.5rem;
    border-radius: 12px;
    text-align: center;
    min-width: 220px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    flex: 1;
    max-width: 300px;
}

.discount-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.discount-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
}

.discount-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.discount-card p {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 0 auto;
    max-width: 1400px;
}

.service-card {
    background: var(--secondary-color) !important;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(106, 153, 78, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
    font-size: 2.2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--primary-color);
}

.service-card:hover .service-icon::after {
    opacity: 1;
    transform: scale(1.2);
}

.service-card h3 {
    text-align: center;
    color: var(--text-light);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.service-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.detail-section {
    background: var(--secondary-color) !important;
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.detail-section:hover {
    background: var(--gray-500);
    transform: translateX(5px);
}

.detail-section h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-section h4::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--accent-color);
}

.detail-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-section li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.detail-section li:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.detail-section li i {
    color: var(--accent-color);
    font-size: 1rem;
    margin-top: 0.2rem;
    transition: all 0.3s ease;
}

.detail-section li:hover i {
    transform: scale(1.2);
}

/* Footer Styles */
.footer {
    background: var(--accent-color) !important;
    color: var(--secondary-color) !important;
    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) !important;
    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) !important;
    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) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-list a:hover {
    color: var(--secondary-color) !important;
}

.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) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.3rem 0;
}

.links-list a:hover {
    color: var(--secondary-color) !important;
    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) !important;
    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 transparent;
}

.social-links a:hover {
    background: var(--primary-color) !important;
    color: var(--secondary-color) !important;
    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: 900px) {
    .main-content {
        padding: 1.2rem 0.5rem;
    }
    .intro-section {
        padding: 1.2rem 0.5rem;
    }
    .intro-container {
        flex-direction: column;
        gap: 1.2rem;
        padding: 0.5rem;
    }
    .intro-header h1 {
        font-size: 2rem;
    }
    .intro-header .intro-decoration {
        gap: 0.5rem;
    }
    .intro-content {
        flex-direction: column;
        gap: 1.2rem;
    }
    .intro-block {
        padding: 0.7rem;
    }
    .intro-block h2, .intro-block h3 {
        font-size: 1.2rem;
    }
    .intro-block p {
        font-size: 1.05rem;
    }
    .intro-icon i {
        font-size: 2.2rem;
    }
    .services-section {
        padding: 1.2rem 0.5rem;
    }
    .services-header h2 {
        font-size: 1.3rem;
    }
    .services-description {
        font-size: 1rem;
    }
    .discount-rates {
        flex-direction: column;
        gap: 0.7rem;
    }
    .discount-card {
        font-size: 1rem;
        padding: 0.7rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .service-card {
        padding: 0.7rem;
    }
    .service-icon i {
        font-size: 2.2rem;
    }
    .service-card h3 {
        font-size: 1.1rem;
    }
    .service-details h4 {
        font-size: 1rem;
    }
    .service-details ul li {
        font-size: 0.98rem;
    }
}
@media (max-width: 500px) {
    .main-content, .intro-section, .services-section {
        padding: 0.5rem 0.1rem;
    }
    .intro-header h1 {
        font-size: 1.3rem;
    }
    .intro-block h2, .intro-block h3 {
        font-size: 1rem;
    }
    .intro-block p {
        font-size: 0.97rem;
    }
    .intro-icon i {
        font-size: 1.5rem;
    }
    .services-header h2 {
        font-size: 1.05rem;
    }
    .services-description {
        font-size: 0.95rem;
    }
    .discount-card {
        font-size: 0.95rem;
        padding: 0.4rem;
    }
    .service-icon i {
        font-size: 1.5rem;
    }
    .service-card h3 {
        font-size: 0.95rem;
    }
    .service-details h4 {
        font-size: 0.95rem;
    }
    .service-details ul li {
        font-size: 0.93rem;
    }
}

/* --- 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 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) {
    .menu-toggle {
        display: flex;
    }
    .nav-right {
        display: none;
        position: absolute;
        top: 80px;
        right: 0.5rem;
        background: var(--background-light);
        width: 80vw;
        box-shadow: 0 8px 24px rgba(0,0,0,0.10);
        flex-direction: column;
        align-items: flex-end;
        padding: 1.2rem 0.7rem 1.2rem 0.7rem;
        z-index: 1500;
        border-radius: 0 0 12px 12px;
    }
    .nav-right.active {
        display: flex;
    }
    .nav-links {
        flex-direction: column;
        font-size: 1rem;
        gap: 1rem;
        width: 100%;
        align-items: flex-end;
    }
    .nav-links a {
        font-size: 1.05rem;
        padding: 0.7rem 0.8rem;
    }
    .logo-container {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }
    .logo {
        height: 75px;
        max-width: 75px;
    }
    .company-name {
        font-size: 1.5rem;
        word-break: break-word;
        max-width: 200px;
    }
    .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: 55px;
        max-width: 55px;
    }
    .company-name {
        font-size: 1.15rem;
        max-width: 120px;
    }
}
