:root {
    --primary-color: #333;
    --secondary-color: #666;
    --accent-color: #8b7355;
    --background-light: #fff;
    --background-dark: #1a1a1a;
    
    /* Typography */
    --font-headers: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headers);
    font-weight: 400;
    letter-spacing: 0.05em;
}

h1 {
    font-size: 48px;
    letter-spacing: 0.1em;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
}

/* Navigation */
.nav {
    /* position: fixed;*/
    width: 100%;
    top: 0;
    background: #e6DACE;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    /*justify-content: space-between;*/
    flex-wrap: wrap; /* Allow wrapping */
    justify-content: center; /* Center the content horizontally */
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;      /* Vertical centering */
    padding: 0.5rem;
    gap: 2rem;
    background-color: #333333;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links-row {
    display: flex;
    align-items: center;
    gap: 2rem; /* Adjust the gap as needed */
}

.language-switch {
    background: none;
    border: none;
    cursor: pointer;
    color: white;
    padding: 0.5rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #333333;
    background-color: white;
    overflow: hidden;
}

.hero img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    filter: brightness(0.7);
    transition: transform 8s ease;
}

.hero:hover img {
    transform: scale(1.05);
}

.hero-content {
    position: absolute;
    z-index: 1;
    /* max-width: 800px;*/
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    padding-top: 25vh;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 1rem;
    font-family: var(--font-headers);
    font-weight: 900;
    letter-spacing: 0;
    color: white;
    -webkit-text-stroke: 1px black;      
}

.hero p {
    font-size: 24px;
    margin-bottom: 2rem;
    font-family: var(--font-headers);
    font-weight: 400;
    color:white;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
    background-color: white;
    border: 1px solid black;
    border-radius: 50px;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Main Pricing Section (Before Services) */
.pricing-main-section {
    padding: 5rem 2rem;
    background: #f5f5f5;
    text-align: center;
}

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

.pricing-main-section h2 {
    font-family: 'Tenor Sans', serif;
    font-size: 2.5rem;
    color: #534741;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing-main-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 2.5rem;
    background: transparent;
    padding: 0;
    transition: transform 0.3s ease;
}

.pricing-main-image-wrapper:hover {
    transform: translateY(-5px);
}

.pricing-main-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 600px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-main-cta-wrapper {
    margin-top: 2rem;
}

.pricing-main-cta {
    background: #8b7355;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid #8b7355;
}

.pricing-main-cta:hover {
    background: transparent;
    color: #8b7355;
    transform: translateY(-2px);
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f6f4 0%, #e8e4e0 100%);
    text-align: center;
}

.pricing-container {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-section h2 {
    font-family: 'Tenor Sans', serif;
    font-size: 2.5rem;
    color: #534741;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing-image-wrapper {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pricing-image-wrapper:hover {
    transform: scale(1.02);
}

.pricing-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 800px;
}

.pricing-cta {
    background: #8b7355;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid #8b7355;
}

.pricing-cta:hover {
    background: transparent;
    color: #8b7355;
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    background: #e6DACE;
}

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

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    /* background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;*/
}

.service-card:hover {
    transform: translateY(-5px);
}

.video-hero{
    width: 300%;
    z-index: 0;
}

.video-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Ajusta el último valor (0.5) para más o menos oscuridad */
    z-index: 1;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.service-card:hover img {
    transform: scale(1.03);
    filter: brightness(1.1);
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info a {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: var(--accent-color);
}

/* Footer */
.footer {
    background: var(--background-dark);
    color: white;
    padding: 3rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer h3 {
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--accent-color);
}

/* WhatsApp Button */
.whatsapp-button {
    /*position: fixed;*/
    bottom: 20px;
    right: 20px;
    background-color: #B39188;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.2);
    background-color: #846058;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

/* Media Queries */
@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 15px;
        right: 15px;
        padding: 8px 16px;
    }
    
    .nav-links {
        /*display: none;*/
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links.active {
        display: flex;
        /* flex-direction: column;*/
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }
    
    .pricing-section {
        padding: 3rem 1rem;
    }
    
    .pricing-section h2 {
        font-size: 2rem;
    }
    
    .pricing-image-wrapper {
        margin-bottom: 2rem;
    }
    
    .pricing-cta {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
    
    /* Main Pricing Section Mobile */
    .pricing-main-section {
        padding: 3rem 1rem;
    }
    
    .pricing-main-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .pricing-main-image-wrapper {
        margin-bottom: 1.5rem;
        padding: 0;
    }
    
    .pricing-main-image {
        max-width: 100%;
    }
    
    .pricing-main-cta {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
}