/* ====================================
   ARTURO SALES - LANDSCAPING PLUGIN
   Estilos Principales
   ==================================== */

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

:root {
    --primary: #2d5016;
    --secondary: #8b9d6f;
    --accent: #d4a574;
    --light: #f5f5f0;
    --dark: #1a1a1a;
    --text: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ====================================
   NAVEGACIÓN
   ==================================== */

.arturo-nav {
    background: rgba(45, 80, 22, 0.95);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

.language-selector {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.language-selector label {
    color: var(--light);
    font-weight: 500;
    margin-right: 0.5rem;
}

.language-selector select {
    padding: 0.6rem 1rem;
    border: 2px solid var(--accent);
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.language-selector select:hover {
    background: rgba(255, 255, 255, 0.2);
}

.language-selector select option {
    background: var(--primary);
    color: var(--light);
}

/* ====================================
   SECCIÓN HERO
   ==================================== */

.hero {
    height: 100vh;
    background-image: linear-gradient(135deg, rgba(45, 80, 22, 0.2) 0%, rgba(139, 157, 111, 0.25) 100%), url(HERO_BG_URL);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light);
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 60%, rgba(212, 165, 116, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    z-index: 2;
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-company {
    font-size: 5rem !important;
    font-weight: 900 !important;
    margin-bottom: 1.5rem !important;
    letter-spacing: 5px !important;
    color: var(--accent) !important;
    text-shadow: 4px 4px 16px rgba(0, 0, 0, 0.6), 2px 2px 8px rgba(0, 0, 0, 0.4) !important;
    text-transform: uppercase;
    display: block;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--accent) 0%, #e8c997 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.6));
}
}

.hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 1rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.5);
}

/* ====================================
   SECCIÓN DE SERVICIOS
   ==================================== */

.services {
    background: var(--light);
    padding: 6rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--primary);
    position: relative;
    padding-bottom: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent);
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Service Card Featured (con imagen) */
.service-card-featured {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.service-card-featured .service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.service-card-featured .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-featured:hover .service-image img {
    transform: scale(1.08);
}

.service-card-featured .service-icon {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.service-card-featured h3 {
    padding: 0 2rem;
    margin-top: 0.5rem;
}

.service-card-featured p {
    padding: 0 2rem 2rem 2rem;
}

/* ====================================
   SECCIÓN ABOUT
   ==================================== */

.about {
    background: white;
    padding: 6rem 2rem;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    color: var(--primary);
    font-size: 1.5rem;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ====================================
   SECCIÓN CONTACTO
   ==================================== */

.contact {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.9) 0%, rgba(139, 157, 111, 0.8) 100%);
    padding: 6rem 2rem;
    color: var(--light);
}

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

.contact-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.form-group {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 2px var(--accent);
}

.contact-form button {
    grid-column: 1 / -1;
}

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

.info-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--accent);
}

/* ====================================
   PIE DE PÁGINA
   ==================================== */

.footer {
    background: rgba(26, 26, 26, 0.95);
    padding: 2rem;
    text-align: center;
    color: var(--light);
    border-top: 3px solid var(--accent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* ====================================
   ANIMACIONES
   ==================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }
.fade-in:nth-child(5) { animation-delay: 0.5s; }
.fade-in:nth-child(6) { animation-delay: 0.6s; }
.fade-in:nth-child(7) { animation-delay: 0.7s; }
.fade-in:nth-child(8) { animation-delay: 0.8s; }
.fade-in:nth-child(9) { animation-delay: 0.9s; }
.fade-in:nth-child(10) { animation-delay: 1s; }

/* ====================================
   RESPONSIVE
   ==================================== */

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-company {
        font-size: 3.5rem !important;
        letter-spacing: 3px !important;
        margin-bottom: 1rem !important;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2rem;
    }

    .service-card-featured .service-image {
        height: 200px;
    }

    .logo {
        font-size: 1.3rem;
    }

    .language-selector {
        flex-direction: column;
        gap: 0.3rem;
    }

    .language-selector label {
        margin-right: 0;
    }

    .arturo-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-left {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .hero-company {
        font-size: 2.2rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 0.8rem !important;
    }

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

    .hero p {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .services {
        padding: 3rem 1rem;
    }

    .about {
        padding: 3rem 1rem;
    }

    .contact {
        padding: 3rem 1rem;
    }

    .service-card {
        padding: 1rem;
    }

    .service-card-featured .service-image {
        height: 150px;
    }

    .service-card-featured h3 {
        padding: 0 1rem;
    }

    .service-card-featured p {
        padding: 0 1rem 1rem 1rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
}
