/* styles.css */
.map-section {
    padding: 4rem 0;
    background-image: url('images/background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.map-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

#map {
    height: 500px;
    flex: 2;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.map-card {
    flex: 1;
    background-color: #F6ECD6;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    height: 500px;
    overflow-y: auto;
}

.map-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00321B;
}
.leaflet-popup-content-wrapper{
    background-color:#F6ECD6 ;
    color: #00321B;
}
#station-list {
    list-style: none;
    padding: 0;
}

#station-list li {
    padding: 1rem;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#station-list li:hover {
    background-color: #f0f0f0;
}

#station-list li strong {
    font-size: 1.1rem;
    color: #00321B;
}

#station-list li p {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    color: #666;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #F1EBDE;
}

/* Header with Logo */
.header {
    background-color: #F1EBDE;
    padding: 2rem 0;
    text-align: center;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    height: 220px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Navigation Bar */
.navbar {
    background-color: #00341C;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 0;
    width: 100%;
    justify-content: center;
}

.navbar-item {
    position: relative;
}

.navbar-link {
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    transition: background-color 0.3s ease;
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
}

.navbar-link:hover {
    background-color: #E71A25;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #00341C;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-link:hover {
    background-color: #E71A25;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    background: linear-gradient(135deg, #00341C, rgb(56, 84, 66));
    overflow: hidden;
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    height: 550px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    padding: 0 2rem;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 4rem;
}

.slide-text {
    flex: 1;
    color: white;
}

.slide-text h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.slide-text .highlight {
    color: #E71A25;
    background: linear-gradient(45deg, #E71A25, #503839);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0.2rem 1rem;
    border-radius: 8px;
    background-color: #E71A25;
    color: #FFFFFF;
    -webkit-text-fill-color: #FFFFFF;
}

.slide-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background-color: #E71A25;
    color: #FFFFFF;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #E71A25;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.slide-image {
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 450px;
    padding: 1rem;
}

.slide-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Slider Navigation */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.slider-arrow.prev {
    left: 2rem;
}

.slider-arrow.next {
    right: 2rem;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #E71A25;
}

/* Mobile Menu Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    background-color: #e71a242e;
    border-radius: 6px;
    border: 2px solid #e71a241f;
    transition: all 0.3s ease;
}

.navbar-toggle:hover {
    background-color: #e71a242e;
    border-color: #e71a241f;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #E71A25;
    transition: 0.3s;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Nosotros Section */
.nosotros {
    background: linear-gradient(135deg, #F1EBDE 0%, #E8DCC6 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.nosotros::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="1" fill="%23000" opacity="0.02"/><circle cx="10" cy="60" r="1" fill="%23000" opacity="0.02"/><circle cx="90" cy="40" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.nosotros-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.nosotros-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
}

.nosotros-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInLeft 1s ease-out;
}

.nosotros-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

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

.nosotros-text {
    animation: fadeInRight 1s ease-out;
}

.nosotros-title {
    font-size: 3rem;
    font-weight: 800;
    color: #00341C;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.nosotros-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #00341C;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.brand-name {
    color: #E71A25;
    position: relative;
}

.brand-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #E71A25, #00341C);
    border-radius: 2px;
}

.nosotros-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.nosotros-features {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-width: 200px;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #00341C;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 2rem 0;
        margin-bottom: 1rem;
    }
    
    .logo-image {
        height: 100px;
        max-width: 250px;
    }
    
    .navbar-container {
        padding: 0 1rem;
        position: relative;
    }
    
    .navbar-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 52, 28, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        padding-top: 2rem;
        gap: 0;
        z-index: 1000;
    }
    
    .navbar-menu.active {
        left: 0;
    }
    
    .navbar-item {
        width: 100%;
        text-align: center;
    }
    
    .navbar-link {
        padding: 1.5rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        font-size: 1.2rem;
        text-align: center;
    }
    
    .navbar-toggle {
        display: flex;
        position: absolute;
        right: 1rem;
        top: 65%;
        transform: translateY(-1%);
        z-index: 1001;
    }
    
    .navbar-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .navbar-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .navbar-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #00341C;
        margin-top: 0;
    }
    
    .slider-container {
        height: 400px;
        margin-bottom: 2rem;
    }
    
    .slide {
        padding: 0;
    }
    
    .slide-content {
        flex-direction: column;
        text-align: center;
        gap: 0;
        padding: 0;
        justify-content: center;
        height: 100%;
    }
    
    .slide-text {
        display: none;
    }
    
    .slide-image {
        max-height: 100%;
        height: 100%;
        width: 100%;
        padding: 0;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .slide-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        background-color: #00341C;
    }
    
    .slider-arrow:hover {
        background-color: rgba(0, 52, 28, 0.8);
    }
    
    .slider-arrow.prev {
        left: 1rem;
    }
    
    .slider-arrow.next {
        right: 1rem;
    }
    
    /* Nosotros Responsive */
    .nosotros {
        padding: 4rem 0;
        margin-top: 2rem;
    }
    
    .nosotros-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .nosotros-title {
        font-size: 2.5rem;
    }
    
    .nosotros-subtitle {
        font-size: 1.3rem;
    }
    
    .nosotros-description {
        font-size: 1rem;
    }
    
    .nosotros-features {
        gap: 1rem;
        justify-content: center;
    }
    
    .feature-item {
        min-width: 180px;
        padding: 0.8rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .nosotros-img {
        max-width: 300px;
    }
}

/* Cards Section */
.cards-section {
    background-color: #F6ECD6;
    padding: 3.5rem 0;
    position: relative;
}

.cards-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
}

.cards-container::-webkit-scrollbar {
    height: 8px;
}

.cards-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.cards-container::-webkit-scrollbar-thumb {
    background: #00321B;
    border-radius: 4px;
}

.cards-container::-webkit-scrollbar-thumb:hover {
    background: #E81F28;
}

.card {
    background-color: white;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 280px;
    flex-shrink: 0;
}

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

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Card Historia - Color #00321B */
.card-historia {
    background-color: #00321B;
   
}

.card-historia .card-icon {
    color: #F6ECD6;
}

/* Card Misión - Color #F6ECD6 con sombra */
.card-mision {
    background-color: #F6ECD6;
    box-shadow: 0 0 0 2px rgba(0, 50, 27, 0.2), 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-mision .card-title {
    color: #00321B;
}

.card-mision .card-description {
    color: rgba(0, 50, 27, 0.8);
}

.card-mision .card-icon {
    color: #00321B;
}

/* Card Visión - Color #FFB400 */
.card-vision {
    background-color: #FFB400;
}

.card-vision .card-icon {
    color: white;
}

/* Card Valores - Color #E81F28 */
.card-valores {
    background-color: #E81F28;
}

.card-valores .card-icon {
    color: white;
}

/* Responsive Cards */
@media (max-width: 768px) {
    .cards-section {
        padding: 4rem 0;
        margin-top: 2rem;
    }
    
    .cards-container {
        gap: 1.5rem;
        padding: 0 1rem;
        padding-bottom: 1rem;
    }
    
    .card {
        padding: 1.5rem;
        min-width: 250px;
    }
    
    .card-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
    
    /* Map Section Responsive */
    .map-section {
        padding: 4rem 0;
        margin-top: 2rem;
    }
    
    .map-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    #map {
        height: 400px;
        width: 100%;
        min-height: 400px;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        z-index: 1;
    }
    
    .map-card {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
}




/* Custom SVG Marker Styles */
.custom-div-icon {
    background: transparent !important;
    border: none !important;
}

.custom-marker {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: transform 0.2s ease;
}

.custom-marker:hover {
    transform: scale(1.1);
}

.custom-marker svg {
    display: block;
}

/* Contacto Section */
.contacto-section {
    background: linear-gradient(135deg, #F1EBDE 0%, #E8DCC6 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.contacto-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="50" cy="10" r="1" fill="%23000" opacity="0.02"/><circle cx="10" cy="60" r="1" fill="%23000" opacity="0.02"/><circle cx="90" cy="40" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.contacto-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.contacto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
}

.contacto-info {
    animation: fadeInLeft 1s ease-out;
}

.contacto-title {
    font-size: 3rem;
    font-weight: 800;
    color: #00341C;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.contacto-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #E71A25;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.contacto-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contacto-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contacto-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contacto-item:hover {
    transform: translateY(-3px);
}

.contacto-item svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contacto-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #00341C;
    margin-bottom: 0.5rem;
}

.contacto-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.contacto-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out;
}

.contacto-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

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

/* Contacto Responsive */
@media (max-width: 768px) {
    .contacto-section {
        padding: 4rem 0;
        margin-top: 2rem;
    }
    
    .contacto-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .contacto-title {
        font-size: 2.5rem;
    }
    
    .contacto-subtitle {
        font-size: 1.3rem;
    }
    
    .contacto-description {
        font-size: 1rem;
    }
    
    .contacto-details {
        gap: 1rem;
    }
    
    .contacto-item {
        padding: 1.2rem;
        text-align: left;
    }
    
    .contacto-img {
        max-width: 450px;
    }
}

/* Únete Section */
.unete-section {
    background: linear-gradient(135deg, #F6ECD6 0%, #E8DCC6 100%);
    padding: 5rem 0;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
    
}

.unete-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    border: none;
    z-index: 1;
}

.unete-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
    border: none;
}

.unete-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
   
    animation: fadeInLeft 1s ease-out;
}

.unete-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.unete-image:hover .unete-img {
    transform: scale(1.05);
}

.unete-text {
    padding: 2rem 0;
    animation: fadeInRight 1s ease-out;
}

.unete-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #00321B;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.vacantes-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    
    padding: 2rem;
    background: linear-gradient(135deg, #F6ECD6 0%, #E8DCC6 100%);
}

.vacantes-header .unete-title {
    font-size: 4rem;
    font-weight: 800;
    color: #00321B;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.vacantes-icon {
    width: 300px;
    height: 500px;
    object-fit: contain;
    transform: translateY(50px);

}
  

.factura-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #F6ECD6 0%, #E8DCC6 100%);
    flex-wrap: wrap;
}

.factura-header .factura-title {
    font-size: 4rem;
    font-weight: 800;
    color: #00321B;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.factura-header img {
    width: auto;
    height: 500px;
    max-width: 100%;
    object-fit: contain;
}

/* Responsive styles for factura-header */
@media (max-width: 1024px) {
    .factura-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .factura-header .factura-title {
        font-size: 3rem;
    }
    
    .factura-header img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .factura-header {
        padding: 1rem;
        gap: 1rem;
    }
    
    .factura-header .factura-title {
        font-size: 2.5rem;
    }
    
    .factura-header img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .factura-header {
        padding: 0.75rem;
    }
    
    .factura-header .factura-title {
        font-size: 2rem;
    }
    
    .factura-header img {
        height: 250px;
    }
}
.factura-subtitle {
    font-size: 2.5rem;
    font-weight: 600;
    color: #E71A25;
    margin-bottom: 2rem;
    line-height: 1.2;
}
.unete-subtitle {
    font-size: 2.5rem;
    font-weight: 600;
    color: #E71A25;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.unete-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.unete-button {
    display: inline-block;
    background: linear-gradient(135deg, #C8A882 0%, #B8956F 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(200, 168, 130, 0.3);
    position: relative;
    overflow: hidden;
}

.unete-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.unete-button:hover::before {
    left: 100%;
}

.unete-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(200, 168, 130, 0.4);
    background: linear-gradient(135deg, #D4B48E 0%, #C4A17B 100%);
}

/* Olas decorativas para la sección únete */
.unete-waves-top,
.unete-waves-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 10;
    pointer-events: none;
}

.unete-waves-top {
    top: 0;
    transform: rotate(180deg);
}

.unete-waves-bottom {
    bottom: 0;
}

.unete-waves-top svg,
.unete-waves-bottom svg {
    position: relative;
    display: block;
}

/* Ocultar olas en dispositivos móviles */
@media (max-width: 768px) {
    .unete-waves-top,
    .unete-waves-bottom {
        display: none;
    }
    
    .unete-waves-top svg,
    .unete-waves-bottom svg {
        width: calc(100% + 1.3px);
        height: 60px;
    }
}



/* Únete Responsive */
@media (max-width: 768px) {
    .unete-section {
        padding: 4rem 0;
    }
    


    .unete-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .unete-image {
        order: 1;
    }

    .unete-img {
        height: 400px;
    }

    .unete-title {
        font-size: 2.5rem;
    }

    .vacantes-header {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .vacantes-header .unete-title {
        font-size: 3rem;
    }

    .vacantes-icon {
        width: 180px;
        height: 180px;
    }

    .unete-subtitle {
        font-size: 2rem;
    }

    .unete-description {
        font-size: 1rem;
        max-width: none;
    }

    .unete-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .unete-section {
        padding: 3rem 0;
    }
    


    .unete-content {
        gap: 2rem;
    }

    .unete-img {
        height: 350px;
    }

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

    .vacantes-header .unete-title {
        font-size: 2.5rem;
    }

    .vacantes-header {
        padding: 1rem;
        gap: 1rem;
    }

    .vacantes-icon {
        width: 150px;
        height: 150px;
    }

    .unete-subtitle {
        font-size: 1.5rem;
    }

    .unete-text {
        padding: 1rem 0;
    }
}

/* Banner Section */
.banner-section {
    padding: 0;
    background: #F1EBDE;
    position: relative;
    overflow: hidden;
    height: 400px;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    background-color: #F1EBDE;
}

/* Show desktop video by default, hide mobile video */
.banner-video-desktop {
    display: block;
}

.banner-video-mobile {
    display: none;
}

.banner-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.banner-image:hover {
    transform: scale(1.02);
}

/* Banner Responsive */
@media (max-width: 768px) {
    .banner-section {
        height: 300px;
    }
    
    .banner-video {
        object-fit: contain;
    }
    
    /* Hide desktop video and show mobile video on mobile devices */
    .banner-video-desktop {
        display: none;
    }
    
    .banner-video-mobile {
        display: block;
    }
}

@media (max-width: 480px) {
    .banner-section {
        height: 250px;
    }
}

/* Payment Methods Section */
.payment-methods-section {
    padding: 4rem 0;
    background: #F6ECD6;
    overflow: hidden;
}

.payment-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.payment-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00321B;
    margin-bottom: 3rem;
    text-align: center;
}

.payment-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.payment-track {
    display: flex;
    animation: scroll-infinite 15s linear infinite;
    width: calc(200%);
}

.payment-item {
    flex: 0 0 auto;
    margin: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-item img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 50, 27, 0.1));
    transition: transform 0.3s ease;
}

.payment-item img:hover {
    transform: scale(1.1);
}

@keyframes scroll-infinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Payment Methods Responsive */
@media (max-width: 768px) {
    .payment-methods-section {
        padding: 3rem 0;
    }
    
    .payment-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .payment-item {
        margin: 0 1rem;
    }
    
    .payment-item img {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .payment-methods-section {
        padding: 2rem 0;
    }
    
    .payment-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .payment-item {
        margin: 0 0.5rem;
    }
    
    .payment-item img {
        height: 50px;
    }
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #00321B 0%, #001F11 100%);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 6rem;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerGrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23fff" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23fff" opacity="0.03"/><circle cx="50" cy="10" r="1" fill="%23fff" opacity="0.03"/><circle cx="10" cy="60" r="1" fill="%23fff" opacity="0.03"/><circle cx="90" cy="40" r="1" fill="%23fff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23footerGrain)"/></svg>');
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 4rem 0 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Brand */
.footer-brand {
    animation: fadeInLeft 1s ease-out;
}

.footer-logo {
    height: 150px;
    width: auto;
    margin-bottom: 1.5rem;
   
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background-color: #E71A25;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231, 26, 37, 0.3);
}

/* Footer Links */
.footer-links,
.footer-services,
.footer-contact {
    animation: fadeInUp 1s ease-out;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #F6ECD6;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #F6ECD6, #F6ECD6);
    border-radius: 2px;
}

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

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background-color: #E71A25;
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: white;
    padding-left: 15px;
}

.footer-link:hover::before {
    width: 10px;
}

/* Footer Contact */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: #F6ECD6;
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
}

/* Footer Image Section */
.footer-image-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.footer-additional-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.footer-additional-image:hover {
    transform: scale(1.05);
    opacity: 1;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.payment-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.payment-icons svg {
    height: 40px;
    width: auto;
    border-radius: 6px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
    background: white;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.payment-icons svg:hover {
    transform: scale(1.05);
    opacity: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.payment-icon {
    height: 24px;
    width: auto;
    border-radius: 4px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
}

.payment-icon:hover {
    transform: scale(1.1);
    opacity: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: #E71A25;
}

/* Footer Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 0 2rem;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-logo {
        height: 150px;
        margin-bottom: 1rem;
    }
    
    .footer-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .footer-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-menu {
        text-align: center;
    }
    
    .footer-contact-info {
        align-items: center;
        text-align: center;
    }
    
    .footer-contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-bottom-links {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
    
    .footer-bottom-link {
        font-size: 0.85rem;
    }
    
    .footer-image-section {
        padding: 1rem 0;
        text-align: center;
    }
    
    .footer-additional-image {
        height: 60px;
    }
    
    .payment-methods {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
        text-align: center;
        align-items: center;
    }
    
    .payment-label {
        font-size: 0.85rem;
    }
    
    .payment-icons {
        justify-content: center;
        gap: 1rem;
    }
    
    .payment-icons svg {
        height: 35px;
    }
    
    .payment-icon {
        height: 20px;
    }
    
    .footer-image-section {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 2.5rem 0;
        margin-bottom: 1.5rem;
    }
    
    .nosotros {
        padding: 4.5rem 0;
        margin-top: 2.5rem;
    }
    
    .cards-section {
        padding: 4.5rem 0;
        margin-top: 2.5rem;
    }
    
    .map-section {
        padding: 4.5rem 0;
        margin-top: 2.5rem;
    }
    
    .contacto-section {
        padding: 4.5rem 0;
        margin-top: 2.5rem;
    }
    
    .slider-container {
        margin-bottom: 2.5rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-content {
        gap: 2rem;
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-social {
        gap: 0.8rem;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .payment-methods {
        padding: 0.8rem 0;
    }
    
    .payment-icons {
        gap: 0.8rem;
    }
    
    .payment-icons svg {
        height: 30px;
    }
    
    .payment-icon {
        height: 18px;
    }
}

/* PWA Specific Styles */
@media (display-mode: standalone) {
    /* Estilos cuando la app está instalada como PWA */
    body {
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
    }
    
    .header {
        padding-top: calc(1rem + env(safe-area-inset-top));
    }
}

/* Install button animation */
@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.install-button {
    animation: slideInUp 0.5s ease-out;
}

/* Offline indicator */
.offline-indicator {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ff6b6b;
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    z-index: 9999;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.offline-indicator.show {
    transform: translateY(0);
}

/* Touch improvements for mobile */
@media (hover: none) and (pointer: coarse) {
    .cta-button,
    .navbar-link,
    .footer-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Splash screen styles */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F6ECD6 0%, #E8D5B7 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.splash-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.splash-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.splash-text {
    color: #00321B;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

/* PWA status bar styling for iOS */
@supports (-webkit-touch-callout: none) {
    .header {
        padding-top: calc(1rem + env(safe-area-inset-top));
    }
}
/* CV 
Banner Section */
.cv-banner-section {
    background: url('images/background.webp') center/cover;
    padding: 3rem 0;
    position: relative;
}

.cv-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
 
    opacity: 0.1;
    z-index: 0;
}

.cv-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.cv-banner-content {
    text-align: center;
    color: white;
}

.cv-banner-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #F6ECD6;
    line-height: 1.4;
}

.cv-banner-button {
    display: inline-block;
    background: linear-gradient(135deg, #E71A25 0%, #B91C1C 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 26, 37, 0.3);
    border: 2px solid transparent;
}

.cv-banner-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 26, 37, 0.4);
    background: linear-gradient(135deg, #B91C1C 0%, #E71A25 100%);
}

.cv-banner-button:active {
    transform: translateY(0);
}

/* Responsive styles for CV Banner */
@media (max-width: 768px) {
    .cv-banner-section {
        padding: 2rem 0;
    }
    
    .cv-banner-container {
        padding: 0 1rem;
    }
    
    .cv-banner-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .cv-banner-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cv-banner-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .cv-banner-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}/*
 Info Section Styles */
.info-section {
    background-color: #E71A25;
    padding: 4rem 0;
    margin-bottom: 3rem;
    color: #F6ECD6;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.info-card {
    background-color: rgba(246, 236, 214, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(246, 236, 214, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.info-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #F6ECD6;
    border-bottom: 2px solid #F6ECD6;
    padding-bottom: 0.4rem;
}

.info-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
}

.info-email {
    color: #F6ECD6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-email:hover {
    color: #fff;
    text-decoration: underline;
}

.info-social {
    margin-top: 1rem;
}

.info-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #F6ECD6;
    color: #00321B;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-social-link:hover {
    background-color: #fff;
    transform: scale(1.1);
}

.info-social-link svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-card {
        padding: 1.2rem;
    }
    
    .info-title {
        font-size: 1.1rem;
    }
    
    .info-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .info-section {
        padding: 2.5rem 0;
    }
    
    .info-container {
        padding: 0 1rem;
    }
    
    .info-card {
        padding: 1rem;
    }
    
    .info-title {
        font-size: 1rem;
    }
    
    .info-description {
        font-size: 0.8rem;
    }
}/* Sti
cky Navbar for Facturación */
.sticky-navbar {
    background-color: #00341C;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sticky-navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-facturar-btn {
    background-color: #E71A25;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(231, 26, 37, 0.3);
}

.sticky-facturar-btn:hover {
    background-color: #c41520;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 26, 37, 0.4);
}

.sticky-facturar-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(231, 26, 37, 0.3);
}

/* Responsive design for sticky navbar */
@media (max-width: 768px) {
    .sticky-navbar-container {
        padding: 0 1rem;
    }
    
    .sticky-facturar-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .sticky-facturar-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

/* reCAPTCHA Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    max-width: 90%;
    width: 400px;
    text-align: center;
    animation: slideIn 0.3s ease-out;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.close-button:hover {
    color: #000;
}

.modal-content h3 {
    margin-bottom: 1rem;
    color: #00321B;
}

.modal-content p {
    margin-bottom: 1.5rem;
    color: #666;
}

#recaptcha-container {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

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