/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background-color: #FFFFFF;
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.logo-icon {
    height: 40px;
    width: auto;
}

.navigation {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FEEB50;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 10px;
}

.language-btn {
    background: transparent;
    border: 1px solid #E0E0E0;
    color: #000000;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-btn:hover {
    background-color: #FEEB50;
    border-color: #FEEB50;
    color: #000000;
}

.language-btn.active {
    background-color: #FEEB50;
    border-color: #FEEB50;
    color: #000000;
}

.btn-contactar {
    background-color: #FEEB50;
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-contactar:hover {
    background-color: #FDD835;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 60px 0;
    background: linear-gradient(to bottom, #FFFFFF 0%, #FFF9E6 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
}

.hero-description {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
}

.btn-hero {
    align-self: flex-start;
    margin-top: 10px;
    padding: 12px 64px;
}

/* About Us Section */
.about-us {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(to bottom, #FFF9E6 0%, #FFFFFF 100%);
}

.about-us-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/about-us-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.about-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-us-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-us-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
}

.about-us-description {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    line-height: 1.8;
}

.about-us-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-us-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Services Section */
.services {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(to right, #FFF9E6 0%, #FFFFFF 100%);
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/services-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.services-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.services-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
}

.services-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
}

.services-arrow {
    margin-top: 20px;
    margin-left: 50px;
    display: flex;
    align-items: center;
}

.arrow-image {
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
}

.service-description {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
}

/* Contact Us Section */
.contact-us {
    background-color: #FAFAFA;
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.contact-form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-form-card {
    background-color: #FFFFFF;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 550px;
}

.contact-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.2;
}

.contact-description {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input {
    padding: 14px 18px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: #000000;
    background-color: #FFFFFF;
    transition: border-color 0.3s ease;
    width: 100%;
}

.form-input:focus {
    outline: none;
    border-color: #FEEB50;
}

.form-input::placeholder {
    color: #999999;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Montserrat', sans-serif;
}

.btn-form {
    width: 100%;
    margin-top: 10px;
}

.success-message {
    margin-top: 20px;
    padding: 15px 20px;
    background-color: #E8F5E9;
    border: 1px solid #4CAF50;
    border-radius: 6px;
    color: #2E7D32;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    line-height: 1.6;
}

/* Footer Styles */
.footer {
    background-color: #2A2A2A;
    padding: 50px 0;
    border-top: 1px solid #E0E0E0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

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

.footer-logo-icon {
    height: 50px;
    width: auto;
}

.footer-navigation {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FEEB50;
}

.footer-copyright {
    display: flex;
    align-items: center;
}

.footer-copyright p {
    color: #CCCCCC;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-illustration {
        order: 2;
    }
    
    .hero-text {
        order: 1;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .btn-hero {
        align-self: center;
    }
    
    .navigation {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .language-switcher {
        gap: 6px;
    }
    
    .language-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .language-switcher {
        order: 2;
        margin-right: 0;
    }
    
    .navigation {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 15px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .about-us-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-us-illustration {
        order: 2;
    }
    
    .about-us-text {
        order: 1;
    }
    
    .about-us-title {
        font-size: 36px;
        text-align: center;
    }
    
    .about-us-description {
        font-size: 16px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-us-title {
        font-size: 28px;
    }
    
    .about-us-description {
        font-size: 15px;
    }
    
    .services-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-text {
        text-align: center;
    }
    
    .services-arrow {
        justify-content: center;
    }
    
    .services-title {
        font-size: 36px;
    }
    
    .services-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 28px;
    }
    
    .services-subtitle {
        font-size: 16px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-description {
        font-size: 15px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-illustration {
        order: 2;
    }
    
    .contact-form-wrapper {
        order: 1;
    }
    
    .contact-form-card {
        padding: 30px 20px;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .footer-navigation {
        justify-content: center;
        gap: 15px;
    }
    
    .footer-link {
        font-size: 14px;
    }
}

/* Page Sections for Privacy/Terms */
.page-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
    text-align: center;
}

.page-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 20px;
}

.page-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-section ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 10px;
}

.page-section strong {
    font-weight: 600;
}

@media (max-width: 768px) {
    .page-section {
        padding: 60px 0;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .page-section h2 {
        font-size: 24px;
    }
    
    .page-section p,
    .page-section ul li {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .page-section {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .page-section h2 {
        font-size: 20px;
    }
    
    .page-section p,
    .page-section ul li {
        font-size: 14px;
    }
    
    .page-section ul {
        margin-left: 20px;
    }
}

