/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Mensaje temporal */
.temporary-message {
    background-color: #f39c12;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.temporary-message p {
    margin: 0;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
    line-height: 1.6;
    background: linear-gradient(to right, #21AD98, #9947CE);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Header */
header {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 20px 0;
}

/* Logo */
.logo-container {
    text-align: center;
    margin-bottom: 5px;
}

.logo {
    height: 70px;
    width: auto;
}

/* Texto del patrocinador */
.sponsor-text {
    text-align: center;
    margin: 3px 0 5px 0;
}

.sponsor-text p {
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    font-style: italic;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
/* Texto del lema */
.motto-text {
    text-align: center;
    margin: 3px 0 8px 0;
}

.motto-text p {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Redes sociales */
.social-media {
    text-align: center;
    margin: 10px 0 15px 0;
}

.social-icon {
    display: inline-block;
    margin: 0 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-icon.whatsapp {
    background-color: #25D366;
}

.social-icon.facebook {
    background-color: #1877F2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-icon.youtube {
    background-color: #FF0000;
}

.social-icon.tiktok {
    background-color: #000;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    opacity: 0.8;
}

/* Main Content */
main {
    flex-grow: 1;
}

.container {
    width: min(1100px, 92%);
    margin-inline: auto;
}

/* Sección Hero */
.hero-section {
    background-image: url('../img/fondohero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: white;
}

.full-width {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    max-width: none;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    line-height: 1.5;
}

.hero-content {
    width: min(1100px, 92%);
    margin-inline: auto;
    padding-left: 50px;
}

/* Sección Vísitanos */
.location-section {
    background-color: rgba(255, 255, 255, 0.10);
    padding: 40px 0;
}

.location-section h2 {
    text-align: left;
    font-size: 2rem;
    color: white;
    margin-bottom: 30px;
    margin-top: 0;
}

.visit-content {
    display: grid;
    grid-template-columns: 5fr 3fr;
    gap: 40px;
    align-items: start;
}

.location-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box, 
                linear-gradient(45deg, #21AD98, #9947CE) border-box;
}

.building-section {
    border-radius: 10px;
    overflow: hidden;
}

.frontis-content {
    display: flex;
    align-items: center;
    gap: 20px;
    /*background: white;*/
    padding: 20px;
    border-radius: 10px;
}

.frontis-text {
    flex: 1;
}

.frontis-text h3 {
    font-size: 1.2rem;
    color: white;
    margin: 0;
    font-weight: 600;
}

.frontis-image {
    flex: 2;
}

.frontis-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box, 
                linear-gradient(45deg, #21AD98, #9947CE) border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.frontis-image img:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.facebook-feed-section {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box, 
                linear-gradient(45deg, #21AD98, #9947CE) border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facebook-feed-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* Sección Contacto */
.contact-section {
    background-image: url('../img/fodocontactenos.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0;
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.contact-info p {
    font-size: 1rem;
    color: white;
    margin: 0;
}

.contact-form-column {
    display: flex;
    justify-content: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.form-group.full-width {
    margin-bottom: 20px;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: white;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
    line-height: 1.4;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.submit-btn {
    background: linear-gradient(45deg, #21AD98, #9947CE);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    min-width: 120px;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .visit-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-menu a {
        display: block;
        text-align: center;
    }
    
    .logo {
        max-height: 60px;
    }
}

/* Navegación */
.main-nav {
    text-align: center;
    position: relative;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid white;
    cursor: pointer;
    padding: 12px;
    margin: 10px 0;
    border-radius: 8px;
    z-index: 1001;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
    top: 0;
}

.hamburger:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    transition: all 0.3s ease;
}

.nav-menu li {
    display: inline-block;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu a.active {
    background: linear-gradient(45deg, #21AD98, #9947CE);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    font-weight: 600;
}

.nav-menu a:hover {
    background: linear-gradient(45deg, #21AD98, #9947CE);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        position: fixed;
        left: 20px;
        top: 20px;
        z-index: 1002;
        margin: 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(33, 173, 152, 0.98), rgba(153, 71, 206, 0.98));
        backdrop-filter: blur(15px);
        display: flex !important;
        flex-direction: column !important;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1001;
        gap: 0 !important;
        visibility: hidden;
        opacity: 0;
        flex-wrap: nowrap !important;
        padding: 40px 20px;
        box-sizing: border-box;
    }
    
    .nav-menu.active {
        left: 0;
        visibility: visible;
        opacity: 1;
    }
    
    .nav-menu li {
        display: block !important;
        width: 100%;
        max-width: 280px;
        text-align: center;
        margin: 8px 0 !important;
        flex: none !important;
    }
    
    .nav-menu a {
        display: block !important;
        text-align: center;
        font-size: 18px;
        padding: 16px 24px;
        width: 100%;
        border-radius: 12px;
        margin: 0 !important;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        font-weight: 600;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        box-sizing: border-box;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: scale(1.02);
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    }
    
    .logo {
        max-height: 60px;
    }
    
    /* Ajustar redes sociales en móvil */
    .social-media {
        margin: 15px 0;
    }
    
    .social-icon {
        margin: 0 8px;
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 16px;
    }
    
    /* Ocultar el overflow cuando el menú esté activo */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    /* Asegurar que el header tenga el z-index correcto */
    header {
        position: relative;
        z-index: 1000;
    }
}

/* Estilos para la página de Talleres */
.talleres-section {
    padding: 40px 0;
    text-align: center;
}

.talleres-title {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: bold;
}

.talleres-subtitle {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 50px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.talleres-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.taller-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.taller-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.2);
}

.taller-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.taller-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.taller-card:hover .taller-image img {
    transform: scale(1.1);
}

.taller-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.taller-content h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.taller-content p {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    flex: 1;
}

.taller-btn {
    background: linear-gradient(45deg, #21AD98, #9947CE);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.taller-btn:hover {
    background: linear-gradient(45deg, #1e9a87, #8640b8);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Estilos para talleres próximamente */
.taller-card.proximamente {
    position: relative;
    opacity: 0.85;
}

.taller-card.proximamente .taller-image {
    position: relative;
}

.proximamente-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 10;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }
}

.taller-card.proximamente .taller-image img {
    filter: brightness(0.7);
    transition: filter 0.3s ease;
}

.taller-card.proximamente:hover .taller-image img {
    filter: brightness(0.8);
    transform: scale(1.05);
}

.taller-card.proximamente .taller-btn[disabled] {
    background: linear-gradient(45deg, #888, #666);
    cursor: not-allowed;
    opacity: 0.7;
}

.taller-card.proximamente .taller-btn[disabled]:hover {
    background: linear-gradient(45deg, #888, #666);
    transform: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.taller-card.proximamente .taller-content h3 {
    color: rgba(255, 255, 255, 0.9);
}

.taller-card.proximamente .taller-content p {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive para tabletas */
@media (max-width: 1024px) {
    .talleres-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .talleres-title {
        font-size: 2.5rem;
    }
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .talleres-section {
        padding: 30px 0;
    }
    
    .talleres-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .talleres-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .talleres-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .taller-image {
        height: 200px;
    }
    
    .taller-content {
        padding: 20px;
    }
    
    .taller-content h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .taller-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .taller-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Estilos para la página Nosotros */
.about-section {
    padding: 60px 0;
    margin-bottom: 40px;
}

/* Fondo transparente para todas las páginas excepto index y donaciones */
body:not(.home-page):not(.donaciones-page) main.container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content.right-text {
    grid-template-columns: 1fr 1fr;
}

.text-content {
    padding: 20px;
}

.text-content h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: bold;
}

.text-content p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    margin-bottom: 20px;
}

.image-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Inclinaciones específicas para cada imagen */
.about-image.image-1 {
    transform: rotate(-10deg);
    transform-origin: bottom left;
}

.about-image.image-1:hover {
    transform: rotate(-10deg) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.about-image.image-2 {
    transform: rotate(10deg);
    transform-origin: bottom right;
}

.about-image.image-2:hover {
    transform: rotate(10deg) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.about-image.image-3 {
    transform: rotate(-10deg);
    transform-origin: bottom left;
}

.about-image.image-3:hover {
    transform: rotate(-10deg) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.about-image:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Responsive para móviles */
@media (max-width: 768px) {
    body:not(.home-page) main.container {
        padding: 20px;
        margin-top: 10px;
        margin-bottom: 10px;
        border-radius: 15px;
    }
    
    .about-section {
        padding: 40px 0;
        margin-bottom: 30px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .about-content.right-text {
        grid-template-columns: 1fr;
    }
    
    .about-content.right-text .image-content {
        order: -1;
    }
    
    .text-content h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .text-content p {
        font-size: 1rem;
        text-align: center;
    }
    
    .about-image {
        max-width: 100%;
    }
}

/* Footer */
footer {
    background-color: #181717;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
}

footer p {
    margin: 0;
    font-size: 16px;
}

.footer-contact p {
    margin: 5px 0;
    font-size: 14px;
    color: #ccc;
}
/* Redes sociales del footer */
.footer-social-media {
    margin-top: 20px;
    text-align: center;
}

.footer-social-icon {
    display: inline-block;
    margin: 0 8px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    line-height: 35px;
    text-align: center;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social-icon:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-social-icon.whatsapp:hover {
    background-color: #25D366;
}

.footer-social-icon.facebook:hover {
    background-color: #1877F2;
}

.footer-social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.footer-social-icon.youtube:hover {
    background-color: #FF0000;
}

.footer-social-icon.tiktok:hover {
    background-color: #000;
}

/* === ESTILOS PARA EMPRESARIOS AUSPICIADORES === */
.empresarios-section {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.empresarios-section h1 {
    text-align: center;
    color: #fff;
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-description {
    text-align: center;
    color: #fff;
    font-size: 1.1em;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.empresarios-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.empresa-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.empresa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.2);
}

.empresa-logo {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.empresa-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.empresa-info {
    flex: 1;
}

.empresa-info h3 {
    color: #fff;
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.empresa-descripcion {
    color: #fff;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.empresa-contacto {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contacto-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 0.95em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.contacto-item i {
    color: #21AD98;
    width: 16px;
    text-align: center;
    text-shadow: none;
}

.empresa-redes {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    align-items: center;
}

.red-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #21AD98;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.red-social:hover {
    background: #9947CE;
    transform: translateY(-2px);
}

/* Responsivo para móviles */
@media (max-width: 768px) {
    .empresarios-section {
        padding: 40px 20px;
    }
    
    .empresarios-section h1 {
        font-size: 2em;
    }
    
    .section-description {
        font-size: 1em;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .empresa-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 20px;
    }
    
    .empresa-logo {
        width: 150px;
        height: 150px;
    }
    
    .empresa-info h3 {
        font-size: 1.5em;
    }
    
    .contacto-item {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .empresa-redes {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .empresarios-section h1 {
        font-size: 1.8em;
    }
    
    .empresa-card {
        margin: 0 10px;
        padding: 15px;
    }
    
    .empresa-logo {
        width: 120px;
        height: 120px;
    }
}

/* === ESTILOS PARA NOVEDADES - CARRUSELES === */
.egresados-section,
.becarios-section {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.egresados-section h2,
.becarios-section h2 {
    text-align: center;
    color: #fff;
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-description {
    text-align: center;
    color: #fff;
    font-size: 1.1em;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.testimonio-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    min-height: 350px;
}

.testimonio-imagen {
    flex-shrink: 0;
}

.testimonio-imagen img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.testimonio-contenido {
    flex: 1;
    text-align: left;
}

.testimonio-contenido blockquote {
    color: #fff;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    quotes: """ """ "'" "'";
}

.testimonio-contenido blockquote::before {
    content: open-quote;
    font-size: 2em;
    color: #fff;
    line-height: 0;
    margin-right: 5px;
    vertical-align: -0.4em;
}

.testimonio-contenido blockquote::after {
    content: close-quote;
    font-size: 2em;
    color: #fff;
    line-height: 0;
    margin-left: 5px;
    vertical-align: -0.4em;
}

.testimonio-contenido cite {
    color: #fff;
    font-weight: 600;
    font-size: 1em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
}

.carousel-btn:hover {
    background: rgba(33, 173, 152, 0.8);
    transform: scale(1.1);
}

.carousel-btn.prev {
    margin-left: -25px;
}

.carousel-btn.next {
    margin-right: -25px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #21AD98;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(33, 173, 152, 0.7);
}

/* Espaciado entre secciones */
.becarios-section {
    margin-top: 80px;
}

.futura-seccion {
    margin-top: 80px;
    min-height: 100px;
}

/* Responsive para tablets */
@media (max-width: 768px) {
    .egresados-section,
    .becarios-section {
        padding: 40px 20px;
    }
    
    .egresados-section h2,
    .becarios-section h2 {
        font-size: 2em;
    }
    
    .section-description {
        font-size: 1em;
        padding: 0 10px;
    }
    
    .testimonio-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 25px;
        min-height: auto;
    }
    
    .testimonio-imagen img {
        width: 150px;
        height: 150px;
    }
    
    .testimonio-contenido {
        text-align: center;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1em;
    }
    
    .carousel-btn.prev {
        margin-left: -22px;
    }
    
    .carousel-btn.next {
        margin-right: -22px;
    }
}

/* Responsive para móviles */
@media (max-width: 480px) {
    .egresados-section h2,
    .becarios-section h2 {
        font-size: 1.8em;
    }
    
    .testimonio-card {
        padding: 20px 15px;
        margin: 0 10px;
    }
    
    .testimonio-imagen img {
        width: 120px;
        height: 120px;
    }
    
    .testimonio-contenido blockquote {
        font-size: 1em;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9em;
    }
    
    .carousel-btn.prev {
        margin-left: -20px;
    }
    
    .carousel-btn.next {
        margin-right: -20px;
    }
}

/* === ESTILOS PARA CERTÁMENES === */
.certamenes-section {
    padding: 40px 0;
    text-align: center;
}

.certamenes-title {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: bold;
}

.certamenes-subtitle {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 50px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.certamenes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.certamen-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.certamen-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.2);
}

.certamen-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.certamen-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.certamen-card:hover .certamen-image img {
    transform: scale(1.1);
}

.certamen-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.certamen-content h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.certamen-content p {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    flex: 1;
}

.ganador-info {
    background: rgba(33, 173, 152, 0.2);
    border: 1px solid rgba(33, 173, 152, 0.4);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
    color: #fff;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.ganador-info strong {
    color: #21AD98;
    text-shadow: none;
}

.certamen-btn {
    background: linear-gradient(45deg, #21AD98, #9947CE);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.certamen-btn:hover {
    background: linear-gradient(45deg, #1e9a87, #8640b8);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Responsive para tabletas */
@media (max-width: 1024px) {
    .certamenes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .certamenes-title {
        font-size: 2.5rem;
    }
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .certamenes-section {
        padding: 30px 0;
    }
    
    .certamenes-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .certamenes-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .certamenes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .certamen-image {
        height: 200px;
    }
    
    .certamen-content {
        padding: 20px;
    }
    
    .certamen-content h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .certamen-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .certamen-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* === ESTILOS PARA MOMENTOS === */
.momentos-section {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.momentos-title {
    text-align: center;
    color: #fff;
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.momentos-subtitle {
    text-align: center;
    color: #fff;
    font-size: 1.1em;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.momentos-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.momento-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.momento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.4);
}

.momento-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

.momento-card:hover .momento-background {
    transform: scale(1.05);
}

.momento-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

.momento-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 40px;
    max-width: 500px;
    z-index: 10;
}

/* Alineación del contenido */
.momento-right .momento-content {
    right: 0;
    text-align: right;
}

.momento-left .momento-content {
    left: 0;
    text-align: left;
}

.momento-content h3 {
    color: #fff;
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.momento-content p {
    color: #fff;
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.momento-btn {
    background: linear-gradient(45deg, #21AD98, #9947CE);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.momento-btn:hover {
    background: linear-gradient(45deg, #1e9a87, #8640b8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Responsive para tablets */
@media (max-width: 768px) {
    .momentos-section {
        padding: 40px 20px;
    }
    
    .momentos-title {
        font-size: 2em;
    }
    
    .momentos-subtitle {
        font-size: 1em;
        padding: 0 10px;
        margin-bottom: 40px;
    }
    
    .momentos-container {
        gap: 30px;
    }
    
    .momento-card {
        height: 350px;
    }
    
    .momento-content {
        padding: 30px 25px;
        max-width: none;
        width: calc(100% - 50px);
        left: 25px !important;
        right: auto !important;
        text-align: center !important;
        top: auto;
        bottom: 0;
        transform: none;
        background: linear-gradient(transparent, rgba(0,0,0,0.8));
        border-radius: 20px 20px 0 0;
    }
    
    .momento-content h3 {
        font-size: 1.6em;
        margin-bottom: 15px;
    }
    
    .momento-content p {
        font-size: 1em;
        margin-bottom: 20px;
    }
    
    .momento-btn {
        padding: 12px 25px;
        font-size: 0.9em;
    }
}

/* Responsive para móviles */
@media (max-width: 480px) {
    .momentos-title {
        font-size: 1.8em;
    }
    
    .momento-card {
        height: 320px;
        margin: 0 10px;
    }
    
    .momento-content {
        padding: 20px;
        width: calc(100% - 40px);
        left: 20px !important;
    }
    
    .momento-content h3 {
        font-size: 1.4em;
    }
    
    .momento-content p {
        font-size: 0.95em;
    }
}

/* === ESTILOS PARA DONACIONES === */
.form-title {
    color: #fff;
    font-size: 1.5em;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-weight: 600;
}