@charset "utf-8";
/* CSS Document */ 

@charset "utf-8";
/* CSS Document */ 

:root {
    --verde-pasto: #4CAF50;
    --azul-cielo: #2196F3;
    --gris-claro: #f8f9fa;
    --texto-oscuro: #333333;
    --texto-claro: #666666;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--texto-oscuro);
    background-color: white;
}

/* NAVBAR STYLES */
.navbar {
    background: linear-gradient(135deg, var(--verde-pasto), var(--azul-cielo));
    padding: 0.8rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1100;
}

.navbar .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.3rem;
    color: white !important;
    display: flex;
    align-items: center;
}

.brand-text {
    white-space: nowrap;
    margin-left: 0.5rem;
}

.navbar-phones {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-right: 2rem;
}

.navbar-phone {
    color: white !important;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar-phone:hover {
    color: white !important;
    background-color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navbar-phone i {
    font-size: 0.9rem;
}

.phones-mobile {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.phones-mobile .navbar-phone {
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 0.5rem;
    justify-content: flex-start;
    width: 100%;
}

.navbar-nav {
    margin-left: auto;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 3px;
    transition: all 0.3s ease;
    padding: 0.5rem 0.7rem;
}

.navbar-nav .nav-link:hover {
    opacity: 0.8;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

.navbar-nav .nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

/* Dropdown styles para desktop */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1060;
}

.dropdown-item:hover {
    background-color: var(--gris-claro);
}

.navbar-toggler {
    border: 2px solid white;
    padding: 0.3rem 0.6rem;
    background: rgba(255, 255, 255, 0.1);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
}

/* Estilos específicos para móvil */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.1);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 8px;
        backdrop-filter: blur(10px);
        position: relative;
        z-index: 1050;
    }
    
    .navbar-nav .nav-item {
        margin: 0.2rem 0;
    }
    
    /* IMPORTANTE: Estilos del dropdown en móvil */
    .navbar-nav .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin: 0;
        background: rgba(255, 255, 255, 0.15) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 5px !important;
        box-shadow: none !important;
        padding: 0.5rem 0;
        margin-top: 0.5rem;
        transform: none !important;
    }
    
    .navbar-nav .dropdown-item {
        color: white !important;
        padding: 0.6rem 1rem;
        font-size: 0.95rem;
    }
    
    .navbar-nav .dropdown-item:hover,
    .navbar-nav .dropdown-item:focus {
        background-color: rgba(255, 255, 255, 0.2) !important;
        color: white !important;
    }
    
    .brand-text {
        font-size: 1.1rem;
    }
}

/* CONTENT SECTIONS */
.content-section {
    padding: 4rem 0;
}

.bg-gris {
    background-color: var(--gris-claro);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--texto-oscuro);
    margin-bottom: 3rem;
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--texto-claro);
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--texto-claro);
    margin-bottom: 2rem;
}

/* CARDS */
.card-personalizada {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
    background: white;
    height: 100%;
}

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

.card-header-personalizada {
    background: linear-gradient(135deg, var(--azul-cielo), var(--verde-pasto));
    color: white;
    padding: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

.card-img-personalizada {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.card-body-personalizada {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body-personalizada p {
    color: var(--texto-claro);
    margin-bottom: 1rem;
}

.lista-items {
    list-style: none;
    padding: 0;
    flex-grow: 1;
}

.lista-items li {
    padding: 0.3rem 0;
    color: var(--texto-claro);
    font-size: 0.9rem;
}

.lista-items li:before {
    content: "✓";
    color: var(--verde-pasto);
    font-weight: bold;
    margin-right: 8px;
}

/* EQUIPMENT GRID */
.equipment-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
    height: 100%;
}

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

.equipment-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--verde-pasto), var(--azul-cielo));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.equipment-card h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--texto-oscuro);
    text-align: center;
}

.equipment-card ul {
    list-style: none;
    padding: 0;
}

.equipment-card li {
    padding: 0.3rem 0;
    color: var(--texto-claro);
    font-size: 0.95rem;
}

.equipment-card li:before {
    content: "✓";
    color: var(--verde-pasto);
    font-weight: bold;
    margin-right: 8px;
}

/* PROCESS STEPS */
.process-step {
    text-align: center;
    margin-bottom: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--verde-pasto), var(--azul-cielo));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1rem;
}

.step-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--texto-oscuro);
}

/* TESTIMONIALS */
.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--texto-claro);
}

.testimonial-author {
    font-weight: 600;
    color: var(--texto-oscuro);
}

/* FOOTER */
.footer {
    background: linear-gradient(135deg, var(--verde-pasto), var(--azul-cielo));
    color: white;
    padding: 3rem 0 1rem;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer a:hover {
    color: white;
    opacity: 0.8;
    text-decoration: none;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

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

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

.footer-nav ul {
    list-style: none;
    padding-left: 1rem;
}

.footer-nav ul li:before {
    content: "•";
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 1400px) {
    .navbar-phone {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }
    .navbar-phones {
        gap: 0.6rem;
        margin-right: 1.5rem;
    }
}

@media (max-width: 1200px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    .navbar-phone {
        font-size: 0.85rem;
        padding: 0.3rem 0.5rem;
    }
    .navbar-phones {
        gap: 0.5rem;
        margin-right: 1rem;
    }
    .navbar-nav .nav-link {
        margin: 0 2px;
        padding: 0.4rem 0.6rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 0.6rem 0;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    .content-section {
        padding: 2.5rem 0;
    }
    .btn-hero {
        display: block;
        margin: 10px auto;
        width: 80%;
        text-align: center;
    }
    .price-value {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1rem;
    }
    .navbar-brand img {
        width: 60px;
        height: 59px;
    }
    .phones-mobile .navbar-phone {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }
}

/* UTILITY CLASSES */
h1 {
    overflow-wrap: anywhere;
}

.email {
    overflow-wrap: anywhere;
}