:root {
    --primary-color: #4CAF50;
    --primary-dark: #2E7D32;
    --primary-light: #A5D6A7;
    --secondary-color: #FFA000;
    --secondary-dark: #FF6F00;
    --text-dark: #333333;
    --text-light: #f5f5f5;
    --background-light: #f9f9f9;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --box-shadow-btn: 8px 8px 18px -4px rgba(0,0,0,0.6);
    --transition: all 0.3s ease;
    --fondo-verde: rgb(10, 51, 17);
    --proxima-ruta-grande: url('../images/proximap.jpg');
    --proxima-ruta-pequeña: url('../images/proxima.jpg');
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--background-light);
}

h1, h2, h3 {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

h4, h5, h6 {
    font-family: 'Montserrat', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: rgb(46, 46, 44);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    box-shadow: var(--box-shadow-btn);
}

.btn:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
}

/* Header and Navigation */
header {
    position: relative;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(255, 255, 255, 0.9);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

/* Mobile menu button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-dark);
    border-radius: 3px;
    transition: var(--transition);
}

 levitra {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-left: 10px;
    margin-bottom: 0;
}

nav ul {
    display: flex;
    gap: 1.5rem;
}

nav ul li a {
    font-weight: 600;
    transition: var(--transition);
    padding: 5px 10px;
    border-radius: var(--border-radius);
}

nav ul li a:hover {
    color: var(--primary-color);
    
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('../images/principal.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

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

/* Section common styles */
section {
    padding: 5rem 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.underline {
    height: 4px;
    width: 80px;
    background-color: var(--secondary-color);
    margin: 0 auto;
}

/* Próxima Ruta */
.route_info {
    background-color: white;
}

.card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .card {
        flex-direction: row;
    }
}

.route-image {
    flex: 1;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-image: var(--proxima-ruta-grande);
}

@media (max-width: 768px) {
    .route-image {
        background-image: var(--proxima-ruta-pequeña);
        background-size: cover;
        background-position: center;
    }
}

.route-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--secondary-color);
    color: white;
    padding: 10px;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: bold;
    line-height: 1.2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    background-size: cover;
    background-position: center;
}

.route-badge .date {
    font-size: 1.8rem;
    display: block;
}

.route-badge .month {
    font-size: 1rem;
}

.route-details {
    flex: 2;
    padding: 2rem;
}

.route-details h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.detail-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.route-description {
    margin: 1.5rem 0;
    line-height: 1.7;
    text-align: justify;
}

@media (max-width: 768px){
    .route-description{
        text-align: left;
    }
}

.recommendations, .meeting-point {
    background-color: rgba(165, 214, 167, 0.2);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.recommendations h4, .meeting-point h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.recommendations ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.recommendations li {
    display: flex;
    align-items: center;
}

.recommendations i, .meeting-point i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* About Us Section */
.about-us {
    background-color: #f5f7f5;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
    }
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    width: 350px;
    height: 650px;
    background-color: var(--primary-color);
    border-radius: 1%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: top;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.9);
    overflow: hidden;
    background: linear-gradient(rgba(76, 175, 80, 0), rgba(76, 175, 80, 0)),
                url('../images/grupo.png');
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    .image-container {
        width: 250px;
        height: 250px;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.9);
        margin-bottom: 2em;
    }
}

.leaf {
    position: absolute;
    background-color: var(--primary-light);
    border-radius: 50% 0;
    transform: rotate(45deg);
}

.leaf-1 {
    width: 80px;
    height: 80px;
    top: 50px;
    left: 30px;
    animation: float 6s ease-in-out infinite;
}

.leaf-2 {
    width: 60px;
    height: 60px;
    bottom: 60px;
    right: 40px;
    animation: float 7s ease-in-out infinite;
}

.leaf-3 {
    width: 40px;
    height: 40px;
    top: 40%;
    right: 30%;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: rotate(45deg) translate(0, 0);
    }
    50% {
        transform: rotate(45deg) translate(10px, 10px);
    }
    100% {
        transform: rotate(45deg) translate(0, 0);
    }
}

.about-text {
    flex: 2;
    margin-top: -3em;
}

.about-text h3 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .about.text p{
        margin-top: 5em;
    }
}

.activities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.activity {
    text-align: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 7px 7px 29px -9px rgba(0,0,0,0.75);
    transition: var(--transition);
}

.activity:hover {
    transform: translateY(-5px);
}

.activity i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.activity h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Members Section */
.members {
    background-color: white;
}

.members-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .members-content {
        flex-direction: row;
    }
}

.benefits, .join-form {
    flex: 1;
    padding: 2rem;
}

.benefits {
    background-color: rgba(165, 214, 167, 0.2);
    border-radius: var(--border-radius);
    box-shadow: 11px 11px 16px -4px rgba(0,0,0,0.3);
}

.benefits h3, .join-form h3 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.benefits ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.benefits i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 4px;
}

.join-form p {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

/* Tips Section */

.tips-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.tip {
    background-color: rgb(255, 255, 255);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 7px 7px 29px -9px rgba(0,0,0,0.75);
    transition: var(--transition);
}

.tip:hover {
    transform: translateY(-5px);
}

.tip-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.tip-icon i {
    font-size: 2rem;
    color: var(--primary-dark);
}

.tip h3 {
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 1.2rem;
}

.tip ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 15px;
}

.tip ul li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Últimas Noticias Section */
.news-section {
    background-color: white;
    padding: 5rem 5%;
}

.news-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-date {
    flex: 0 0 80px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    font-weight: 700;
    text-align: center;
}

.news-date .day {
    font-size: 1rem;
    line-height: 1;
}

.news-date .month {
    font-size: 1rem;
    margin-top: 0.3rem;
}

.news-content {
    flex: 1;
    padding: 1.5rem;
    box-shadow: 7px 7px 29px -9px rgba(0,0,0,0.75);
}

.news-content h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.news-btn-container {
    text-align: center;
    margin-top: 2rem;
}

.news-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
}

@media (max-width: 768px) {
    .news-item {
        flex-direction: column;
    }
    
    .news-date {
        flex-direction: row;
        padding: 0.8rem;
        justify-content: center;
    }
    
    .news-date .day, 
    .news-date .month {
        margin: 0 0.3rem;
    }
}

/* Footer */
footer {
    background-image: url('../images/principal.jpg');
    background-color: var(--primary-dark);
    color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 2rem;
    padding-top: 2em;    
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    line-height: 0.8em;
}

.footer-contact h4,
.footer-social h4 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.footer-contact i,
.footer-social i {
    margin-right: 10px;
}

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

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.social-icons i {
    font-size: 1.2rem;
    margin: 0;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    nav ul {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -300px;
        width: 250px;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        padding: 80px 40px;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    nav ul.active {
        right: 0;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .card {
        flex-direction: column;
    }
    
    .route-image {
        min-height: 200px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo {
        align-items: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

.documents {
    padding: 5rem 5%;
}

.documents-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.document_category {
    margin-bottom: 5em;
}

.document_category h3 {
    color: var(--primary-dark);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
}

.document-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.document-item {
    display: flex;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.document-item:hover {
    transform: translateY(-5px);
}

.document-icon {
    flex: 0 0 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.document-icon i {
    font-size: 3rem;
}

.document-info {
    flex: 1;
    padding: 2rem;
}

.document-info h4 {
    color: rgb(0, 0, 0, 0.8);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.document-info p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.document-info .download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    font-size: 1em;
}

.btn_documentos{
    color:black;
}

@media (max-width: 768px) {
    .document-item {
        flex-direction: column;
    }
    
    .document-icon {
        flex: 0 0 auto;
        padding: 2rem 0;
    }
}

.download-container {
    margin-top: 2rem;
    text-align: center;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 1rem;
}

.download-btn i {
    font-size: 1.2rem;
}

.download-info {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.activities-section, .calendar-section, .join-activities {
    background-color: var(--background-light);
    padding: 5rem 5%;
}

.activities-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.activity-item {
    display: flex;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.activity-item:hover {
    transform: translateY(-5px);
}

.activity-date {
    flex: 0 0 100px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 0;
    font-weight: 700;
    text-align: center;
}

.activity-date .day {
    font-size: 2.5rem;
    line-height: 1;
}

.activity-date .month {
    font-size: 1.2rem;
    margin-top: 0.3rem;
}

.activity-date .year {
    font-size: 1rem;
    margin-top: 0.3rem;
    opacity: 0.7;
}

.activity-details {
    flex: 1;
    padding: 1.5rem 2rem;
}

.activity-details h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.activity-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
}

.info-item i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.activity-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.activity-cta {
    text-align: right;
}

.calendar-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

.season {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.season:hover {
    transform: translateY(-5px);
}

.season-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.season-header i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

.season-header h3 {
    color: var(--primary-dark);
    margin-bottom: 0;
}

.season-activities li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.season-activities li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.join-info {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-column {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    margin-bottom: 2rem;
}

.info-icon {
    flex: 0 0 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1.5rem;
}

.info-icon i {
    font-size: 2rem;
    color: var(--primary-dark);
}

.info-content h3 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.cta-container {
    text-align: center;
}

@media (max-width: 768px) {
    .activity-item {
        flex-direction: column;
    }
    
    .activity-date {
        flex-direction: row;
        padding: 1rem;
        justify-content: center;
    }
    
    .activity-date .day, 
    .activity-date .month,
    .activity-date .year {
        margin: 0 0.3rem;
    }
    
    .activity-info {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .join-info {
        flex-direction: column;
    }
}

.contact-section {
    padding: 5rem 5%;
    /*background-color: var(--background-light);*/
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info, .contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-info {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-info h3, .contact-form-container h3 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1.5rem;
}

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

.info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 30px;
    margin-right: 10px;
}

.social-contact {
    margin-top: 2rem;
}

.social-contact h4 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.form-status {
    margin-top: 1.5rem;
    padding: 10px;
    border-radius: var(--border-radius);
    text-align: center;
    display: none;
}

.form-status.success {
    background-color: rgba(76, 175, 80, 0.2);
    color: var(--primary-dark);
    display: block;
}

.form-status.error {
    background-color: rgba(244, 67, 54, 0.2);
    color: #d32f2f;
    display: block;
}

.recaptcha-container {
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}

/* Enlaces de interés section */
.links-section {
    padding: 5rem 5%;
}

.links-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.link-card {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 220px;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.link-icon {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.link-card:hover .link-icon {
    transform: scale(1.1);
    color: var(--secondary-dark);
}

.link-title {
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.link-description {
    font-size: 0.9rem;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .link-card {
        width: 180px;
        height: 200px;
    }
    
    .link-icon {
        font-size: 2rem;
    }
}

/* Noticias page styles */
.noticias-main {
    padding-top: 80px;
}

.noticias-hero {
    background-color: var(--primary-light);
    padding: 3rem 5%;
    position: relative;
    overflow: hidden;
}

.noticias-hero::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.noticias-hero::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 10%;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.noticias-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2%;
}

.noticia-item {
    display: flex;
    margin-bottom: 2.5rem;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.noticia-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.noticia-date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom right, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 2rem;
    min-width: 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.noticia-date::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.noticia-date .day {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}

.noticia-date .month {
    font-size: 1.3rem;
    margin-top: 5px;
    font-weight: 600;
}

.noticia-date .year {
    font-size: 1.1rem;
    margin-top: 5px;
    opacity: 0.8;
}

.noticia-details {
    padding: 2rem;
    flex: 1;
}

.noticia-details h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.noticia-details h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.noticia-details p {
    line-height: 1.8;
    color: #555;
}

@media (max-width: 768px) {
    .noticia-item {
        flex-direction: column;
   }
    
    .noticia-date {
        flex-direction: row;
        padding: 1.2rem;
        min-width: auto;
    }
    
    .noticia-date .day,
    .noticia-date .month,
    .noticia-date .year {
        margin: 0 5px;
    }
    
    .noticia-details {
        padding: 1.5rem;
    }
}

/* Otras actividades section */
.activities-showcase {
    max-width: 1000px;
    margin: 2rem auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.activity-card {
    /*background: linear-gradient(145deg, #ffffff, #f0f0f0);*/
    background: var(--fondo-verde);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-btn);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    width: 325px; /* Fixed width */
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-btn);
}

.activity-card-header {
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 1.2rem;
    font-weight: 700;
    text-align: center;
    font-size: 1.2rem;
}

.activity-card-body {
    padding: 1.5rem;
    text-align: center;
}

.activity-card-title {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

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

.activities-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.activities-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.activities-cta .btn {
    padding: 12px 30px;
    font-size: 1rem;
    box-shadow: 8px 8px 18px -4px rgba(0,0,0,0.7);
}

.activities-cta .btn:hover {
    box-shadow: 8px 8px 18px -4px rgba(0,0,0,0.7);
}


/* Tips Section */

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

.tip {
    background-color: rgb(238, 240, 238);
    border-radius: var(--border-radius);
    padding: 2rem;

    transition: var(--transition);
}

.tip:hover {
    transform: translateY(-5px);
}

.tip-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.tip-icon i {
    font-size: 2rem;
    color: var(--primary-dark);
}

.tip h3 {
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 1.2rem;
}

.tip ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 15px;
}

.tip ul li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}





.hiking-benefits {
    background-color: white;
    overflow: hidden;
}

.benefits-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .benefits-content {
        flex-direction: row;
    }
}

.benefits-text {
    flex: 1;
    padding: 2rem;
    margin-top: -2em;
}

.benefits-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.benefits-list {
    margin-bottom: 2rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.benefits-list li i {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.3rem;
    background-color: var(--primary-light);
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.benefits-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 1rem;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    color:white
}

.benefits-btn:hover {
    background-color: var(--primary-dark);
}

/*.benefits-visual {
    flex: 1;
    height: 300px;
    position: relative;
}*/

.benefits-visual {
    flex: 1;
    height: 580px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 11px 11px 16px -4px rgba(0,0,0,0.8);
}

.benefits-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}
.nature-scene {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #87CEEB, #e0f7fa);
    border-radius: var(--border-radius);
}

.mountain {
    position: absolute;
    bottom: 0;
    border-radius: 50%;
}

.mountain-back {
    height: 150px;
    width: 400px;
    left: -100px;
    bottom: 20px;
    background-color: #4d6a6d;
    z-index: 1;
}

.mountain-middle {
    height: 180px;
    width: 500px;
    right: -120px;
    bottom: 10px;
    background-color: #3b5859;
    z-index: 2;
}

.mountain-front {
    height: 200px;
    width: 500px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background-color: var(--primary-dark);
    z-index: 3;
}

.sun {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: #FFD700;
    border-radius: 50%;
    top: 40px;
    right: 60px;
    box-shadow: 0 0 40px #FFD700;
    animation: sun-pulse 4s infinite alternate;
}

@keyframes sun-pulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.cloud {
    position: absolute;
    background-color: white;
    border-radius: 50px;
}

.cloud-1 {
    width: 100px;
    height: 40px;
    top: 60px;
    left: 50px;
    animation: cloud-move 20s linear infinite;
}

.cloud-1::before, .cloud-1::after {
    content: '';
    position: absolute;
    background-color: white;
    border-radius: 50%;
}

.cloud-1::before {
    width: 50px;
    height: 50px;
    top: -20px;
    left: 15px;
}

.cloud-1::after {
    width: 30px;
    height: 30px;
    top: -10px;
    left: 60px;
}

.cloud-2 {
    width: 70px;
    height: 30px;
    top: 100px;
    right: -70px;
    animation: cloud-move 15s linear infinite;
    animation-delay: 2s;
}

.cloud-2::before, .cloud-2::after {
    content: '';
    position: absolute;
    background-color: white;
    border-radius: 50%;
}

.cloud-2::before {
    width: 40px;
    height: 40px;
    top: -15px;
    left: 10px;
}

.cloud-2::after {
    width: 25px;
    height: 25px;
    top: -8px;
    left: 40px;
}

@keyframes cloud-move {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(100vw + 100px));
    }
}

.hiker {
    position: absolute;
    width: 20px;
    height: 40px;
    background-color: #333;
    border-radius: 50% 50% 0 0;
    bottom: 60px;
    left: 30%;
    z-index: 4;
    animation: hiker-walk 8s infinite alternate;
}

.hiker::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 20px;
    background-color: #533;
    bottom: -15px;
    left: 2.5px;
    z-index: 4;
}

@keyframes hiker-walk {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(150px) translateY(-20px);
    }
}

.bird {
    position: absolute;
    width: 15px;
    height: 8px;
    background: transparent;
}

.bird::before, .bird::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 3px;
    background-color: black;
    top: 0;
}

.bird::before {
    left: 0;
    transform: rotate(30deg);
}

.bird::after {
    right: 0;
    transform: rotate(-30deg);
}

.bird-1 {
    top: 80px;
    left: 200px;
    animation: bird-fly 10s infinite;
}

.bird-2 {
    top: 120px;
    left: 280px;
    animation: bird-fly 12s infinite;
    animation-delay: 1s;
}

@keyframes bird-fly {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(100px, 30px);
    }
    100% {
        transform: translate(200px, 0);
    }
}

@media (max-width: 768px) {
    .benefits-visual {
        height: 300px;
    }
    
    .benefits-text {
        text-align: left;
    }
    
    .benefits-list li {
        justify-content: center;
    }
}

/* Estilos de la sección Junta Directiva */
.board-section {
    padding: 4em 2em;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
}

.board-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
    margin-top: 2em;
}

.board-member {
    background: white;
    border-radius: 15px;
    padding: 2em;
    width: 280px;
    text-align: center;
    box-shadow: 7px 7px 29px -9px rgba(0,0,0,0.75);
    transition: transform 0.3s ease;
}

.board-member:hover {
    transform: translateY(-10px);
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #4CAF50;
    margin: 0 auto 1em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-avatar i {
    font-size: 3em;
    color: white;
}

.member-role {
    color: #2E7D32;
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 0.5em;
}

.member-name {
    color: #5f5e5e;
    font-size: 1.1em;
    margin-bottom: 1em;
    font-weight: 600
}

.member-description {
    font-family: 'Montserrat', sans-serif;
    color: #333333;
    font-size: 1em;
    line-height: 1.6;
}

/* Recommended Routes Section */
.recommended-routes {
    padding: 0;
    margin: 3rem 0;
}

.parallax-container {
    position: relative;
    height: 250px;
    background-image: url('../images/vista_cullera.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    opacity: 1;
    margin-top: -1em;
    box-shadow: 11px 10px 26px 2px rgba(0,0,0,0.8);
    border-radius: 15px;
}

.parallax-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
}

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

.recommended-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px){
    .recommended-content p{
        font-size: 1rem;
    }
}

/* Estilos de la sección Ir a la galería de videos */

.video-gallery-cta {
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.video-gallery-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../galeria/C20250323/20250323_28.jpg");
    opacity: 0.1;
}

.gallery-cta-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-cta-content {
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}

.gallery-title {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Montserrat', serif;
    
}

.gallery-subtitle {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.gallery-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(to right, var(--secondary-color), var(--secondary-dark));
    color: rgb(39, 38, 38);
    padding: 15px 20px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.gallery-btn::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: all 0.6s ease;
}

.gallery-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
}

.gallery-btn:hover::before {
    left: 100%;
}

.gallery-btn-icon {
    margin-right: 15px;
    font-size: 1.5rem;
    
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.gallery-btn-text {
    position: relative;
    font-size: 1.1em;
}

@media (max-width: 768px){
    .gallery-btn-text{
        font-size: 0.8em;
    }
}

/* Responsive adjustments for video gallery CTA */
@media (max-width: 768px) {
    .gallery-title {
        font-size: 2rem;
    }
    
    .gallery-subtitle {
        font-size: 1.2rem;
    }
    
    .gallery-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    .acorta {
        margin-left: 1.2em;
        margin-right: 1.2em;
    }
}

/* Estilos de la seccion comunicados */
.announcements {
    /*background: var(--fondo-verde);*/
    padding: 5rem 5%;
    margin-top: 3em;
}

.announcements-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: -1em;
}

.announcement {
    display: flex;
    background: rgb(238, 241, 238);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow-btn);
    transition: var(--transition);
    margin-bottom: 3em;
}

.announcement:hover {
    transform: translateY(-5px);
}

.announcement-date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    min-width: 5px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.announcement-date .day {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.announcement-date .month {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 0.2rem;
}

.announcement-date .year {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 0.3rem;
}

.announcement-content {
    padding: 2rem 2.5rem;
    flex: 1;
    background: rgb(238, 241, 238);
    color:rgb(98, 104, 99);
    font-size: 1em;
    text-align: right;
}

.announcement-content h3 {
    color: white;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    text-align: left;
    background-color: #4e8a5d; /*38773e*/
    border-radius: 8px;
    padding: 10px 15px
}

.announcement-content p {
    color: var(--text-dark);
    line-height: 1.6;
    text-align: justify;
}

@media (max-width: 768px) {
    .announcement {
        flex-direction: column;
    }

    .announcement-content p{
        text-align: left;
    }
    
    .announcement-date {
        flex-direction: row;
        min-width: unset;
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .announcement-content{
        padding: 1.5rem 1.5rem;
        
    }
    .announcement-date .day,
    .announcement-date .month,
    .announcement-date .year {
        font-size: 1.1rem;
        margin-top: 0;
    }
    
    .announcement-date .day {
        font-size: 1.5rem;
    }
}

select {
    appearance: none;
  }

  .filter-section {
      width: 100%;
      max-width: 600px;
      margin: 0 auto 2em auto;
      margin-bottom: 3em;
  }

  .announcement-select {
      width: 100%;
      padding: 12px;
      border-radius: 25px;
      font-family: 'Montserrat', sans-serif;
      font-size: 1em;
      color: #333;
      background-color: white;
      cursor: pointer;
      border: 2px solid rgb(210, 218, 210);
  
  }
  .announcement-select:hover{
    border-color: #3d7642; 
  }

  .announcement-select:focus {
      outline: none;
      border-color: #4CAF50;
  }

  .announcement-select option:hover {
      background-color: #4CAF50 !important;
      color: white;
  }

  .announcement-select option {
      padding: 12px;
  }

  .fecha_comunicado {
    
    padding-bottom: 0.5em;
    font-size: 0.95em;
    font-style: italic;
    font-weight: bol;
    /*text-align: left !important;
    color: rgb(81, 82, 81) !important;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 1rem;
    background-color: rgb(204, 207, 204);*/
  }

  @media (max-width: 768px) {
    .fecha_comunicado{
        margin-bottom: 1.6em;
    }
  }

  .mienlace {
    color: var(--primary-dark);
    font-weight: bold;
  }

/* Estilo de la cuenta atrás de la página de inicio */
.faltan{
    font-family: Montserrat, Serif;
    text-align: center;
    font-size: 1.7em;
    margin-bottom: -0.5em;
    color: #2E7D32;
}

@media (max-width: 768px) {
    .faltan{
        font-size: 1.4em;
        margin-bottom: -0.8em;
    }
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2px;
    margin: 30px 0;
    flex-wrap: wrap;
    margin-bottom: 3em;
    margin-top:3em;
}

@media (max-width: 768px) {
    .countdown-container{
        gap: 1px;
    }
}

.countdown-card {
    background: linear-gradient(0deg, #e5f3e8, #f0f0f0);
    border-radius: 15px;
    padding: 15px;
    min-width: 100px;
    text-align: center;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    margin: 5px;
}

.countdown-card:hover {
    transform: translateY(-5px);
}

.countdown-number {
    display: block;
    font-size: 2em;
    font-weight: bold;
    color: #2E7D32;
    color: #525151;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .countdown-card {
        padding: 10px;
        min-width: 70px;
        margin: 3px;
    }
    .countdown-number{
        font-size: 1.5em;
    }
}

.countdown-label {
    color: #4e4e4e;
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .countdown-label{
        font-size: 0.7em;
    }
}
/* Fin de los estilos de la cuenta atrás de la página de inicio*/

main {
    background: linear-gradient(rgba(255, 255, 255, 0.90), rgba(255, 255, 255, 0.90)), url('../images/principal.jpg');
    background-size: cover;               
    background-position: center center;  
    background-attachment: fixed;         
    background-repeat: no-repeat;         
    min-height: 100vh;  
}

/* Estilos de la sección de estadísticas */
.stats-section {
    padding: 2rem 0;
    margin: 2rem auto;
    max-width: 1200px;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1rem;
    margin-top: 1em;
}

.stat-card {
    background: rgb(189, 221, 197);
    border-radius: 20px;
    padding: 1.5rem;
    width: 270px;
    box-shadow: 10px 10px 19px -7px rgba(0,0,0,0.75);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2rem;
    color: #2E7D32;
    background: #e8f5e9;
    padding: 1rem;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-content {
    text-align: left;
}

.stat-content h3 {
    font-size: 2.4rem;
    color: #2E7D32;
    
    margin: 0;
    font-weight: 700;
    text-align: center;
}

.stat-content p {
    margin: 0;
    color: #414040;
    font-size: 1rem;
    text-align: center;
}

@media (max-width: 768px) {
    .stats-container {
        gap: 1rem;
    }
    
    .stat-card {
        min-width: 150px;
        padding: 1rem;
    }
    
    .stat-icon {
        font-size: 1.5rem;
        width: 3rem;
        height: 3rem;
    }
    
    .stat-content h3 {
        font-size: 1.7rem;
    }
}

.nuestras_cifras{
    text-align: center;
    font-size: 1.7em;
    font-weight: bold;
    color: #2E7D32;
}

@media (max-width: 768px) {
    .nuestras_cifras{
        font-size: 1.3em;
    }
}