/* Estilos generales con temática Barbie para Epic Queen */
:root {
    /* Paleta de colores estilo Barbie */
    --primary-pink: #ff5c8d;
    --secondary-pink: #ff9cc7;
    --accent-pink: #ff0a54;
    --light-pink: #ffcce7;
    --bright-purple: #b967ff;
    --light-purple: #e5c1ff;
    --bright-blue: #00d4ff;
    --bright-yellow: #ffde59;
    --white: #ffffff;
    --light-gray: #f8f8f8;
    --dark-gray: #333333;
    
    /* Fuentes */
    --font-main: 'Montserrat', sans-serif;
    --font-accent: 'Pacifico', cursive;
}

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

body {
    font-family: var(--font-main);
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Efectos brillantes y destellos */
@keyframes sparkle {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

.floating-icon {
    position: absolute;
    background: linear-gradient(135deg, var(--secondary-pink), var(--bright-purple));
    border-radius: 50%;
    padding: 10px;
    color: white;
    box-shadow: 0 0 15px rgba(255, 92, 141, 0.7);
    animation: sparkle 3s infinite;
}

.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 60%;
    left: 15%;
    animation-delay: 0.5s;
}

.icon-3 {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.icon-4 {
    top: 70%;
    right: 10%;
    animation-delay: 1.5s;
}

/* Header y navegación */
header {
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 156, 199, 0.2);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-img {
    height: 60px;
    max-width: 100%;
    animation: sparkle 3s infinite;
}

@media (max-width: 768px) {
    .logo-img {
        height: 50px;
    }
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.main-nav a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 20px;
}

.main-nav a:hover {
    color: var(--primary-pink);
    background-color: var(--light-pink);
}

.highlight-btn {
    background-color: var(--primary-pink);
    color: var(--white) !important;
    padding: 8px 20px !important;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(255, 92, 141, 0.3);
    transition: all 0.3s ease;
}

.highlight-btn:hover {
    background-color: var(--accent-pink) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 92, 141, 0.4);
}

.special-btn {
    background-color: var(--bright-purple);
    color: var(--white) !important;
    padding: 8px 20px !important;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(185, 103, 255, 0.3);
    transition: all 0.3s ease;
}

.special-btn:hover {
    background-color: #9d4eff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(185, 103, 255, 0.4);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(255, 156, 199, 0.2);
    border-radius: 15px;
    padding: 10px 0;
    z-index: 1;
    top: 100%;
    left: 0;
    margin-top: 10px;
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    border-radius: 0;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-pink);
    cursor: pointer;
}

/* Sección Hero */
.hero {
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--white) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ff9cc7" opacity="0.3"/></svg>');
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent-pink);
    line-height: 1.2;
}

.hero-content h3 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.primary-btn {
    background-color: var(--primary-pink);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 92, 141, 0.3);
}

.primary-btn:hover {
    background-color: var(--accent-pink);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 92, 141, 0.4);
}

.secondary-btn {
    background-color: var(--bright-purple);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(185, 103, 255, 0.3);
}

.secondary-btn:hover {
    background-color: #9d4eff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(185, 103, 255, 0.4);
}

.small-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.hero-image {
    flex: 1;
    position: relative;
    height: 400px;
    background-image: url('images/hero-placeholder.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/* Sección de características */
.features {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 10px;
    color: var(--primary-pink);
}

.pink-text {
    color: var(--primary-pink);
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: left;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.features-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.features-title-container {
    flex: 1;
    min-width: 300px;
}

.features-description {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.features-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

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

.card-green {
    background-color: #e8f5e9;
}

.card-pink {
    background-color: #ffecf2;
}

.card-yellow {
    background-color: #fff8e6;
}

.card-purple {
    background-color: #f3e5f5;
}

.card-orange {
    background-color: #fff3e0;
}

.card-cyan {
    background-color: #e0f7fa;
}

.feature-icon-container {
    width: 80px;
    height: 80px;
    background-color: white;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon-container img {
    max-width: 50px;
    height: auto;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

/* Sección de programas */
.programs {
    padding: 80px 0;
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.programs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path d="M10,0 L20,10 L10,20 L0,10 Z" fill="%23ff9cc7" opacity="0.1"/></svg>');
    background-size: 40px 40px;
    opacity: 0.5;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-gray);
}

.programs-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.programs-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.program-card {
    flex: 0 0 300px;
    background-color: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(255, 156, 199, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-pink), var(--bright-purple));
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(255, 156, 199, 0.25);
}

.program-icon {
    font-size: 2rem;
    color: var(--primary-pink);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-pink), var(--bright-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.program-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-pink);
}

.program-card p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

.prev-btn, .next-btn {
    background-color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(255, 156, 199, 0.2);
    color: var(--primary-pink);
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-pink);
    color: var(--white);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--light-pink);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-pink);
    transform: scale(1.2);
}

/* Sección CTA */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--bright-purple) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30"><circle cx="15" cy="15" r="3" fill="%23ffffff" opacity="0.2"/></svg>');
    background-size: 60px 60px;
    opacity: 0.3;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta .primary-btn {
    background-color: var(--white);
    color: var(--primary-pink);
}

.cta .primary-btn:hover {
    background-color: var(--light-pink);
    color: var(--accent-pink);
}

.cta .secondary-btn {
    background-color: transparent;
    border: 2px solid var(--white);
}

.cta .secondary-btn:hover {
    background-color: var(--white);
    color: var(--bright-purple);
}

/* Sección de Media (YouTube y Spotify) */
.media-section {
    padding: 80px 0;
    background-color: var(--white);
}

.media-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.media-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--bright-purple);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.media-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.youtube-embed, .spotify-embed {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(255, 92, 141, 0.2);
}

.youtube-embed iframe, .spotify-embed iframe {
    display: block;
    border-radius: 20px;
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.8;
    max-width: 300px;
}

.contact-info {
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info a {
    color: var(--secondary-pink);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: var(--white);
}

.contact-info i {
    color: var(--primary-pink);
    font-size: 1.2rem;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-column h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-pink);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    text-decoration: none;
    color: var(--white);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--secondary-pink);
    opacity: 1;
}

.footer-social h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-pink);
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-pink);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 40px;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .programs-slider {
        padding-bottom: 30px;
    }
    
    .media-row {
        flex-direction: column;
    }
    
    .media-column {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 4px 12px rgba(255, 156, 199, 0.2);
        padding: 20px;
        z-index: 999;
    }
    
    .main-nav.active {
        display: block;
        animation: fadeIn 0.3s ease;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .dropdown-content {
        position: static;
        box-shadow: none;
        padding: 10px 0 10px 20px;
        display: none;
        margin-top: 10px;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu-btn.active i:before {
        content: "\\f00d";
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .hero-content h3 {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .program-card {
        flex: 0 0 calc(100% - 30px);
    }
    
    .feature-card {
        transform: none !important;
    }
    
    .media-title {
        font-size: 1rem;
    }
    
    .media-subtitle {
        font-size: 2rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h3 {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .program-card {
        flex: 0 0 100%;
        padding: 20px;
    }
    
    .cta {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .media-subtitle {
        font-size: 1.8rem;
    }
    
    .youtube-embed, .spotify-embed {
        height: 250px;
    }
    
    .youtube-embed iframe, .spotify-embed iframe {
        height: 100% !important;
    }
}



/* Estilos para páginas internas */
.page-header {
    background: linear-gradient(135deg, var(--light-pink), var(--bright-purple));
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.programs-list {
    padding: 80px 0;
}

.program-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.program-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-pink);
    margin-bottom: 15px;
}

.program-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.program-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-top: 20px;
    margin-bottom: 10px;
}

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

.program-card ul li {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.program-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--primary-pink);
    border-radius: 50%;
}



/* Sección Recursos Externos */
.external-resources {
    background-color: #FF69B4; /* Rosa Barbie brillante */
    padding: 60px 0;
    color: white;
}

.resources-header {
    margin-bottom: 40px;
    /* max-width: 300px; */ /* Limitar ancho del texto izquierdo - REMOVED */
    text-align: center; /* Centrar texto */
}

.resources-title {
    font-family: var(--font-primary); /* Cambiado de Press Start 2P a Montserrat */
    font-size: 2.8rem; /* Ajustar tamaño si es necesario */
    font-weight: 700;
    color: #FFFF00; /* Amarillo */
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 2px 2px #000000;
}

.resources-header p {
    font-size: 1rem;
    color: white;
    line-height: 1.5;
    max-width: 600px; /* Limitar ancho de la descripción */
    margin-left: auto; /* Centrar descripción */
    margin-right: auto; /* Centrar descripción */
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px; /* Limitar ancho máximo para centrar */
    margin: 0 auto; /* Centrar la cuadrícula */
}

.resource-card {
    background-color: white;
    border-radius: 20px;
    padding: 25px;
    color: var(--dark-gray);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    transition: opacity 0.3s ease;
    min-height: 200px; /* Asegurar altura mínima */
}

.resource-card:hover {
    opacity: 0.8; /* Cambiar opacidad al pasar el mouse */
}

.card-icon-placeholder {
    font-size: 3rem; /* Tamaño del icono placeholder */
    margin-bottom: 15px;
    line-height: 1;
}

.resource-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #6a3de8; /* Morado */
    margin-bottom: 5px;
}

.resource-card .subtitle {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-top: -5px;
    margin-bottom: 10px;
}

.card-plus-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-pink);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.card-arrow-btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid #6a3de8; /* Morado */
    color: #6a3de8; /* Morado */
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* Ajustes responsivos eliminados para layout centrado */

/* Importar fuente pixelada si es posible (ejemplo con Google Fonts) */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');





/* Estilos Página de Contacto */
.contact-hero {
    background-color: var(--light-pink); /* Fondo rosa claro */
    padding: 60px 0;
    text-align: center;
}

.contact-hero h1 {
    font-family: var(--font-accent);
    font-size: 3.5rem;
    color: var(--primary-pink);
    margin-bottom: 10px;
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

.contact-details {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Columna izquierda más pequeña */
    gap: 50px;
    align-items: start;
}

.contact-info-section h2, .contact-form-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.info-item i {
    color: var(--primary-pink);
    font-size: 1.5rem;
    margin-right: 15px;
    width: 25px; /* Ancho fijo para alinear texto */
    text-align: center;
}

.info-item a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--primary-pink);
}

.social-icons-contact {
    margin-top: 30px;
}

.social-icons-contact a {
    color: var(--primary-purple);
    font-size: 1.8rem;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.social-icons-contact a:hover {
    color: var(--primary-pink);
}

.contact-form-section .form-group {
    margin-bottom: 20px;
}

.contact-form-section label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.contact-form-section input[type="text"],
.contact-form-section input[type="email"],
.contact-form-section textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box; /* Asegura que padding no aumente el tamaño */
}

.contact-form-section textarea {
    resize: vertical; /* Permitir redimensionar verticalmente */
}

.contact-form-section button {
    padding: 12px 30px;
    font-size: 1rem;
    margin-top: 10px;
}

/* Responsive para Contacto */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Una columna en pantallas medianas */
    }
}

@media (max-width: 767px) {
    .contact-hero h1 {
        font-size: 2.8rem;
    }
    .contact-hero p {
        font-size: 1rem;
    }
    .contact-grid {
        gap: 40px;
    }
    .contact-info-section h2, .contact-form-section h2 {
        font-size: 1.8rem;
    }
}

