@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Raleway:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;
}

header {
    background-color: #0e2813;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header>div {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-container {
    position: relative;
    width: 200px;
    height: 80px;
}

.logo-container img {
    height: 150px;
    width: auto;
    display: block;
    object-fit: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4));
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.main-nav a {
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    transition: color 0.3s;
}

.main-nav ul li a {
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}

.main-nav ul li a:hover {
    color: #f1c40f;
}

.btn-whatsapp {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 35px;
    background-color: #fed06e;
    color: #0e2813;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-whatsapp:hover {
    background-color: #8dc73f;
    color: #fffdff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-whatsapp:active {
    transform: translateY(-1px);
}

.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 40, 19, 0.7);
    z-index: -1;
}


.hero-section h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: #fed06e;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-section h2 {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: #8dc73f;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.hero-section p {
    font-family: 'Raleway', sans-serif;
    max-width: 750px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fffdff;
    font-weight: 300;
    margin: 0 auto;
}

.about-section {
    background-color: #fffdff;
    padding: 80px 20px;
    text-align: center;
}

.about-section h2 {
    color: #0e2813;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    color: #1d4c28;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cart-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.about-card {
    background: #fffdff;
    border-radius: 15px;
    padding: 40px 25px;
    width: 320px;
    box-shadow: 0 10px 30px rgba(14, 40, 19, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 5px solid #0e2813;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(14, 40, 19, 0.2);
}

.about-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.about-card h3 {
    color: #1d4c28;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 1.4rem;
}

.about-card p {
    color: #0e2813;
    font-size: 0.95rem;
    line-height: 1.5;
}

.about-card.mission {
    border-top: 4px solid #fed06e;
}

.about-card.vision {
    border-top: 4px solid #8dc73f;
}

.about-card.values {
    border-top: 4px solid #cadc4e;
}

#services {
    padding: 80px 10%;
    background-color: #d1d9cf;
    text-align: center;
}

#services h2 {
    font-family: 'Montserrat', sans-serif;
    color: #0e2813;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.service-item {
    display: flex;
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-height: 200px;
}

.service-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image-container {
    flex: 0 0 45%;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content-wrapper {
    flex: 1;
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content-wrapper h3 {
    color: #1d4c28;
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 800;
}

.service-content-wrapper p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
}

.services-cta .btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background-color: #1d4c28;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.services-cta .btn-primary:hover {
    background-color: #8dc73f;
    transform: translateY(-2px);
}

#gallery {
    padding: 60px 10%;
    background-color: #ffffff;
    text-align: center;
}

#gallery h2 {
    font-family: 'Montserrat', sans-serif;
    color: #0e2813;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.testimonials-container {
    background-color: #d1d9cf;
    padding: 80px 10%;
    text-align: center;
}

.testimonials-container h2 {
    font-family: 'Montserrat', sans-serif;
    color: #0e2813;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-bottom: 6px solid #0e2813;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

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

.stars {
    color: #f1c40f;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.client-name {
    color: #0e2813;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.client-location {
    color: #888;
    font-size: 0.9rem;
}

/* --- SECCIÓN CONTACTO --- */
.form-container {
    background-color: #ffffff;
    padding: 80px 5%;
    display: flex;
    justify-content: center;
}

.form-container form {
    background-color: #f9f9f9;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 700px;
}

.form-container h1 {
    font-family: 'Montserrat', sans-serif;
    color: #0e2813;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0e2813;
    box-shadow: 0 0 8px rgba(14, 40, 19, 0.2);
}

.form-group textarea {
    min-height: 120px;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.btn-submit {
    background-color: #0e2813;
    color: #ffffff;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #1a4a24;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.main-footer {
    background-color: #0e2813;
    color: #ffffff;
    padding: 50px 5% 20px;
    font-family: 'Arial', sans-serif;
}

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

.main-footer {
    background-color: #0e2813;
    color: #ffffff;
    padding: 40px 5% 20px;
    font-family: 'Arial', sans-serif;
}

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

.footer-logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 15px;
    display: block;
    margin-top: -10px;
}

.footer-column h3 {
    color: #f1c40f;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #e0e0e0;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.footer-column a {
    color: inherit;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.social-icon:hover {
    transform: translateY(-3px);
    background-color: #f1c40f;
}

.badge {
    display: inline-block;
    background-color: #f1c40f;
    color: #0e2813;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.8rem;
    margin-top: 15px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: #888;
}

@media (max-width: 1024px) {
    header>div {
        padding: 0 30px;
    }

    .hero-section {
        padding: 0 5%;
    }

    .cart-container {
        gap: 20px;
    }

    .about-card {
        width: 45%;
    }
}

@media (max-width: 768px) {

    header {
        height: auto;
        padding: 15px 0;
    }

    header>div {
        flex-direction: column;
        gap: 15px;
    }

    .logo-container {
        height: 60px;
        width: 150px;
    }

    .logo-container img {
        height: 100px;
    }

    .main-nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-nav ul li a {
        font-size: 12px;
    }

    .hero-section h1 {
        font-size: 2.8rem;
    }

    .about-section h2,
    #services h2,
    #gallery h2,
    .testimonials-container h2,
    .form-container h1 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
        height: auto;
    }

    .service-image-container {
        height: 200px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .form-container form {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .about-card {
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 250px;
    }

    .btn-whatsapp {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    .social-links {
        justify-content: center;
    }
}