/* Variables de colores */
:root {
    --primary-color: #5DBB33;      /* Verde Hoja */
    --secondary-color: #006E7F;    /* Azul Profundo */
    --accent-color: #FFC107;       /* Amarillo Sol */
    --orange-color: #FF8C00;       /* Naranja Vivo */
    --light-neutral: #F5F5F5;      /* Gris Claro */
    --dark-neutral: #333333;       /* Gris Oscuro */
}

/* Tipografías */
h1, h2, h3, h4, h5, h6, .heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

body, p, li, .text {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
}

/* Colores personalizados de Bootstrap */
.btn-primary {
    background-color: var(--orange-color);
    border-color: var(--orange-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--dark-neutral);
}

.text-primary {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('hero_background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    font-size: 1.1rem;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-neutral);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 20px auto 0;
}

/* Value Cards */
.value-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-card h4 {
    color: var(--dark-neutral);
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--primary-color);
}

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

.service-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Price Cards */
.price-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.price-card h4 {
    color: var(--dark-neutral);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.price-specs {
    margin-bottom: 2rem;
}

.price-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--orange-color);
}

.price-note {
    font-style: italic;
    color: #666;
    margin-top: 2rem;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--accent-color);
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--dark-neutral);
    font-weight: 600;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
}

.process-content h4 {
    color: var(--dark-neutral);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.process-content p {
    color: #666;
    font-size: 0.95rem;
}

/* FAQ Accordion */
.accordion-button {
    font-weight: 600;
    color: var(--dark-neutral);
}

.accordion-button:not(.collapsed) {
    background-color: rgba(93, 187, 51, 0.1);
    color: var(--dark-neutral);
    border-color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(93, 187, 51, 0.25);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-form .form-control,
.contact-form .form-select {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 10px;
    padding: 12px 15px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
    border-color: var(--accent-color);
}

.contact-form label {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Contact Buttons */
.contact-buttons .btn {
    font-size: 1.1rem;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 600;
}

/* Trust Badges */
.trust-badges h5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.trust-list {
    list-style: none;
    padding: 0;
}

.trust-list li {
    padding: 0.5rem 0;
    color: white;
}

.trust-list i {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .process-timeline {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .value-card,
    .service-card,
    .price-card {
        margin-bottom: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}



/* Navbar height adjustment for larger logo */
.navbar {
    min-height: 100px; /* Adjust as needed */
}

@media (max-width: 992px) {
    .navbar {
        min-height: 80px; /* Adjust for smaller screens */
    }
}

