:root {
    --olive-green: #606C38;
    --dark-green: #283618;
    --cream: #FEFAE0;
    --tan: #DDA15E;
    --rust: #BC6C25;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cream);
    color: var(--dark-green);
    overflow-x: hidden;
}

/* Navigation */
/* Estilo original para index.html */
.navbar {
    background-color: transparent;
    transition: background-color 0.3s ease;
    padding: 1rem 2rem;
}

.navbar.scrolled {
    background-color: var(--dark-green);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Estilo para páginas internas (no-index) */
body:not(.home-page) .navbar {
    background-color: var(--olive-green);
}

/* Para asegurar que el color se mantenga en páginas internas incluso al hacer scroll */
body:not(.home-page) .navbar.scrolled {
    background-color: var(--dark-green);
}

.navbar-brand img {
    height: 80px;
}

.nav-link {
    color: var(--cream) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--tan) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--tan);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--tan) !important;
}

.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 54, 24, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

/* Page Header */
.page-header {
    height: 50vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 76px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 54, 24, 0.4);
}

.page-title {
    position: relative;
    z-index: 1;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.page-description {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    font-weight: 300;
}

/* Buttons */
.btn-primary {
    background-color: var(--tan);
    border-color: var(--tan);
    color: var(--dark-green);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--rust);
    border-color: var(--rust);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--cream);
    color: var(--cream);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--cream);
    color: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Section Styling */
section {
    padding: 5rem 0;
}

.section-title {
    margin-bottom: 4rem;
    text-align: center;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-green);
    display: inline-block;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--tan);
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    background-color: white;
}

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

.card-img-top {
    height: 250px;
    object-fit: cover;
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-green);
}

.card-text {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Service Items */
.service-item {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--tan);
    margin-bottom: 1.5rem;
    display: block;
}

.service-title {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-green);
}

.service-text {
    color: #666;
}

.service-features {
    text-align: left;
    list-style: none;
    padding-left: 0;
}

.service-features li {
    margin-bottom: 0.5rem;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 30px;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(40, 54, 24, 0.1), rgba(40, 54, 24, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-title {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
    padding: 1rem;
}

/* Testimonials */
.testimonial {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 15px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--dark-green);
}

.testimonial-role {
    color: var(--tan);
    font-size: 0.9rem;
}

/* Contact */
.contact-info {
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
    color: var(--tan);
    margin-bottom: 1rem;
}

.contact-text {
    color: #666;
}

.form-control {
    padding: 0.75rem;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin-bottom: 1.5rem;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--tan);
}

.contact-form-container {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Footer */
footer {
    background-color: var(--dark-green);
    color: white;
    padding: 3rem 0;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1.5rem;
}

.footer-links h5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--tan);
}

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

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

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

.footer-links a:hover {
    color: var(--tan);
}

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

.social-links a:hover {
    background-color: var(--tan);
    color: var(--dark-green);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
}

/* Service Sections */
.service-section {
    padding: 5rem 0;
    background-color: white;
}

.service-header {
    text-align: center;
    margin-bottom: 2rem;
}

.service-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.service-feature {
    margin-bottom: 2rem;
}

.service-feature-icon {
    font-size: 2rem;
    color: var(--tan);
    margin-bottom: 1rem;
}

.service-feature h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-green);
}

.service-feature p {
    color: #666;
}

.service-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

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

/* Pricing Cards */
.pricing-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

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

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    color: white;
}

.pricing-header h3 {
    margin-bottom: 1rem;
    font-weight: 700;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
}

.pricing-body {
    padding: 2rem;
}

.pricing-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-body li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.pricing-body li:last-child {
    border-bottom: none;
}

.pricing-body li i {
    margin-right: 0.75rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Pricing Table */
.pricing-table {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pricing-header {
    background-color: var(--olive-green);
    padding: 1.5rem;
    color: white;
}

.pricing-body {
    padding: 1.5rem;
}

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

.pricing-list li {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.pricing-list li:last-child {
    border-bottom: none;
}

.pricing-item {
    font-weight: 500;
}

.pricing-price {
    font-weight: 700;
    color: var(--dark-green);
}

/* CTA Section */
.cta-section {
    background-color: var(--tan);
    color: var(--dark-green);
    padding: 5rem 0;
}

.cta-section h2 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Event Cards */
.event-card {
    display: flex;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

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

.event-date {
    color: white;
    text-align: center;
    padding: 1.5rem;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-month {
    font-size: 1.2rem;
    font-weight: 500;
}

.event-content {
    padding: 1.5rem;
    flex: 1;
}

.event-content h3 {
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--dark-green);
}

.event-location {
    color: #666;
    margin-bottom: 1rem;
}

.event-location i {
    color: var(--tan);
    margin-right: 0.5rem;
}

.event-description {
    margin-bottom: 1.5rem;
}

/* Discipline Cards */
.discipline-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

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

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

.discipline-content {
    padding: 1.5rem;
}

.discipline-content h3 {
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--dark-green);
}

.discipline-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.discipline-features li {
    margin-bottom: 0.5rem;
}

.discipline-features li i {
    color: var(--tan);
    margin-right: 0.5rem;
}

/* Team Cards */
.team-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

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

.team-img {
    width: 100%;
    height: 250px;
}

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

.team-content {
    padding: 1.5rem;
}

.team-content h3 {
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--dark-green);
}

.team-role {
    color: var(--tan);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    color: #666;
}

/* Achievements */
.achievements-list {
    margin-bottom: 2rem;
}

.achievement-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.achievement-icon {
    background-color: var(--tan);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.achievement-content h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-green);
}

.achievement-content p {
    color: #666;
    margin-bottom: 0;
}

/* Contact CTA Card */
.contact-cta-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.contact-cta-card h3 {
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--dark-green);
}

.contact-quick-info {
    margin-top: 1.5rem;
}

.quick-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.quick-info-item i {
    color: var(--tan);
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 20px;
}

/* Directions */
.directions-content {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.directions-content h3 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--dark-green);
}

.direction-item {
    margin-bottom: 1.5rem;
}

.direction-icon {
    flex-shrink: 0;
}

.direction-details h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-green);
}

/* FAQ Accordion */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
}

.accordion-header {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--dark-green);
    background-color: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    color: var(--dark-green);
    background-color: white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--tan);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23DDA15E'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.25rem;
    color: #666;
}

/* Price Tag */
.price-tag {
    display: inline-block;
    background-color: var(--tan);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

/* Facility Info */
.facility-info h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-green);
}

.facility-info p {
    color: #666;
}

/* Feature Item */
.feature-item {
    margin-bottom: 2rem;
}

.feature-icon {
    flex-shrink: 0;
}

.feature-content h4 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-green);
}

.feature-content p {
    color: #666;
    margin-bottom: 0;
}

/* Newsletter Form */
.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    height: 50px;
    border-radius: 25px 0 0 25px;
    border: none;
}

.newsletter-form .btn {
    border-radius: 0 25px 25px 0;
    height: 50px;
}

.newsletter-form .form-check-input:checked {
    background-color: var(--tan);
    border-color: var(--tan);
}

.newsletter-form .form-check-label {
    font-size: 0.9rem;
}

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

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

/* Social Links Large */
.social-links-large a {
    font-size: 2rem;
    color: var(--tan);
    margin: 0 15px;
    transition: all 0.3s ease;
}

.social-links-large a:hover {
    color: white;
    transform: translateY(-5px);
}
.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0 !important;
}
/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
    .page-title {
        font-size: 2.5rem;
    }
    .event-card {
        flex-direction: column;
    }
    .event-date {
        padding: 1rem;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        min-width: auto;
    }
    .event-day {
        margin-right: 0.5rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    section {
        padding: 3rem 0;
    }
    .navbar {
        background-color: var(--dark-green);
    }
    .page-header {
        height: 30vh;
    }
    .page-title {
        font-size: 2rem;
    }
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    .btn-primary, .btn-outline {
        padding: 0.5rem 1.5rem;
    }
    .page-title {
        font-size: 1.8rem;
    }
    .navbar-brand img {
        height: 40px;
    }
}
/* Estilos responsivos mejorados para añadir a styles.css */

/* Base responsive para todas las páginas */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .navbar-nav {
        background-color: rgba(var(--dark-green-rgb), 0.95);
        padding: 1rem;
        border-radius: 0 0 10px 10px;
    }
    
    .navbar-collapse {
        margin-top: 0.5rem;
    }
    
    .service-feature {
        margin-bottom: 2rem;
    }
    
    /* Ajustes para secciones en orden inverso en móvil */
    .order-lg-1 {
        order: 2 !important;
    }
    
    .order-lg-2 {
        order: 1 !important;
    }
    
    /* Mejorar espacio para secciones de características */
    .service-feature + .service-feature {
        margin-top: 2rem;
    }
    
    /* Ajuste para cards y elementos igualados en altura */
    .row-eq-height {
        display: block;
    }
    
    .testimonial, .service-item, .pricing-card {
        margin-bottom: 2rem;
    }
    
    footer .row > div {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero {
        height: 80vh;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .page-header {
        height: 30vh;
        margin-top: 64px;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    /* Mejorar espacio vertical en móvil */
    .mb-4 {
        margin-bottom: 1.5rem !important;
    }
    
    /* Ajustar botones en móvil */
    .btn {
        padding: 0.5rem 1rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Ajustes para tablas responsivas */
    .table-responsive {
        border: 0;
    }
    
    /* Ajustes para el footer */
    footer {
        text-align: center;
    }
    
    .footer-links {
        text-align: left;
        margin-top: 2rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .social-links a {
        margin: 0 5px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    /* Ajuste para tarjetas */
    .card {
        margin-bottom: 1.5rem;
    }
    
    /* Ajuste para eventos y competiciones */
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        width: 100%;
        padding: 1rem;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    
    .event-day {
        margin-right: 0.5rem;
    }
    
    /* Mejorar formularios en móvil */
    .form-control {
        font-size: 1rem;
        padding: 0.6rem;
    }
    
    /* Ajustar precios */
    .price-tag {
        font-size: 1.2rem;
        padding: 0.3rem 1rem;
    }
}

/* Reglas específicas para clases de equitación */
@media (max-width: 992px) {
    .class-card {
        margin-bottom: 2rem;
    }
    
    .class-img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .class-img {
        height: 150px;
    }
    
    .class-content {
        padding: 1rem;
    }
    
    .class-description p {
        font-size: 0.9rem;
    }
}

/* Mejoras para navegación en móvil */
@media (max-width: 992px) {
    .navbar {
        background-color: var(--dark-green) !important;
    }
    
    .navbar-collapse {
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .navbar-nav {
        padding-bottom: 1rem;
    }
    
    .nav-link {
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link::after {
        display: none;
    }
}

/* Mejora para galerías de imágenes */
@media (max-width: 768px) {
    .gallery-item {
        margin-bottom: 1rem;
    }
    
    .gallery-img {
        height: 200px;
    }
}

/* Optimización para pantallas muy pequeñas */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .hero .btn {
        margin-right: 0 !important;
    }
}

/* Variables CSS para colores con canales RGB para transparencias */
:root {
    --olive-green-rgb: 96, 108, 56; 
    --dark-green-rgb: 40, 54, 24;
    --cream-rgb: 254, 250, 224;
    --tan-rgb: 221, 161, 94;
    --rust-rgb: 188, 108, 37;
}

/* Animación de carga para mejor experiencia */
.page-transition {
    transition: opacity 0.3s ease;
}

.loading {
    opacity: 0.7;
}