/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette from the image - Updated with lighter pinks and white gradients */
    --primary-purple: #0f0517; /* Darker, more intense purple background */
    --secondary-purple: #1a0b2e; /* Slightly lighter purple for sections */
    --accent-purple: #2d1b4e; /* Medium purple for cards and elements */
    
    /* Lighter, more vibrant pinks as seen in the second image */
    --fuchsia: #ff4d94; /* Lighter, more vibrant fuchsia */
    --fuchsia-light: #ff80ab; /* Even lighter pink */
    --fuchsia-lighter: #ffb3d9; /* Very light pink */
    --fuchsia-dark: #ff1a75; /* Slightly darker for contrast */
    --pink-vibrant: #ff6b9d; /* Vibrant pink */
    --pink-pale: #ffa6c9; /* Pale pink */
    
    --white: #ffffff;
    --white-transparent: rgba(255, 255, 255, 0.9);
    --white-muted: rgba(255, 255, 255, 0.7);
    --white-dim: rgba(255, 255, 255, 0.5);
    
    /* Updated gradients with white and different tones for each word */
    --gradient-primary: linear-gradient(90deg, var(--fuchsia) 0%, var(--white) 50%, var(--fuchsia-light) 100%);
    --gradient-secondary: linear-gradient(90deg, var(--fuchsia-light) 0%, var(--white) 50%, var(--pink-vibrant) 100%);
    --gradient-text-powher: var(--fuchsia);
    --gradient-text-camp: var(--fuchsia);
    --gradient-bar: linear-gradient(90deg, var(--fuchsia) 50%, var(--white) 50%);
    
    /* Shadows with pink tint */
    --shadow: 0 10px 30px rgba(255, 77, 148, 0.2);
    --shadow-light: 0 5px 15px rgba(255, 77, 148, 0.1);
    --shadow-dark: 0 15px 40px rgba(15, 5, 23, 0.4);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--primary-purple);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 11, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    width: 105px;
    height: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 1.2rem;
    list-style: none;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--fuchsia-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--fuchsia);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 77, 148, 0.5);
}

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

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--accent-purple);
    border-radius: 10px;
    box-shadow: var(--shadow);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
    border: 1px solid rgba(255, 77, 148, 0.1);
}

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

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: rgba(255, 77, 148, 0.1);
    color: var(--fuchsia-light);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}



/* Decorative bar at the top like in the image */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-bar);
    z-index: 3;
}



.geometric-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(255, 77, 148, 0.05) 50%, transparent 60%);
    background-size: 100px 100px;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(50px) translateY(50px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.welcome-text {
    display: block;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--white-transparent);
    margin-bottom: 1rem;
    position: relative;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.welcome-text::before,
.welcome-text::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: var(--fuchsia);
}

.welcome-text::before {
    left: -80px;
}

.welcome-text::after {
    right: -80px;
}

.main-title {
    margin: 1.8rem 0;
}

.title-powher {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    color: var(--fuchsia);
    margin-bottom: 0.2rem;
    letter-spacing: -2px;
    line-height: 0.9;
}

.title-camp {
    display: block;
    font-size: 4.2rem;
    font-weight: 900;
    color: var(--fuchsia);
    letter-spacing: -1px;
    line-height: 0.9;
}

.subtitle {
    display: block;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--fuchsia);
    margin-top: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: 1.2rem;
    color: var(--white-muted);
    font-style: normal;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.edition-year {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--fuchsia-light);
    margin-top: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--fuchsia);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 77, 148, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
        min-width: 200px;
        text-align: center;
    }
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--white);
}



/* Sponsors Carousel Section */
.sponsors-section {
    padding: 3rem 0;
    background: var(--primary-purple);
    position: relative;
    overflow: hidden;
}

.sponsors-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 77, 148, 0.05) 0%, rgba(45, 27, 78, 0.03) 100%);
    pointer-events: none;
}

.sponsors-carousel {
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sponsors-track {
    display: flex;
    animation: scrollSponsors 30s linear infinite;
    width: max-content;
}

.sponsor-item {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    margin: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 0.8rem;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(255, 77, 148, 0.2);
}

.sponsor-item img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: brightness(0.8) contrast(2.5) saturate(1.2) grayscale(0.3);
}

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

/* Mobile carousel improvements */
@media (max-width: 768px) {
    .sponsors-carousel {
        padding: 0 10px;
    }
    
    .sponsors-track {
        animation-duration: 20s; /* Faster on mobile */
    }
}

/* Mobile loader improvements */
@media (max-width: 768px) {
    .logo-image {
        width: 80px !important;
    }
    
    .loader-title {
        font-size: 1.8rem !important;
    }
    
    .loader-subtitle {
        font-size: 0.8rem !important;
        letter-spacing: 1px !important;
    }
    
    .progress-bar {
        width: 150px !important;
    }
    
    .logo-glow {
        width: 150px !important;
        height: 150px !important;
    }
}

@media (max-width: 480px) {
    .logo-image {
        width: 60px !important;
    }
    
    .loader-title {
        font-size: 1.5rem !important;
    }
    
    .loader-subtitle {
        font-size: 0.7rem !important;
    }
    
    .progress-bar {
        width: 120px !important;
    }
    
    .logo-glow {
        width: 120px !important;
        height: 120px !important;
    }
}

@media (max-width: 480px) {
    .sponsors-track {
        animation-duration: 15s; /* Even faster on small screens */
    }
}

/* Information Section */
.info-section {
    padding: 5rem 0;
    background: var(--primary-purple);
    position: relative;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 77, 148, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
}

.info-card {
    background: var(--accent-purple);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

/* Removed the top border line from info cards */

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

.info-icon {
    width: 80px;
    height: 80px;
    background: var(--fuchsia);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 5px 20px rgba(255, 77, 148, 0.3);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.info-card p {
    color: var(--white-muted);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--fuchsia);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(255, 77, 148, 0.1);
}

.location-link:hover {
    color: var(--fuchsia-light);
    transform: translateX(5px);
    background: rgba(255, 77, 148, 0.2);
}

.location-link i {
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .location-link {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
        margin-top: 0.8rem;
    }
}

/* Ponentes Section */
.ponentes-section {
    padding: 5rem 0;
    background: var(--secondary-purple);
    position: relative;
}

.ponentes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.02) 0%, rgba(255, 77, 148, 0.03) 100%);
    pointer-events: none;
}

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

@media (max-width: 768px) {
    .ponentes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.ponente-card {
    background: var(--accent-purple);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    position: relative;
}

/* Removed the top border line from ponente cards */

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

.ponente-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.ponente-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.ponente-image video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ponente-card:hover .ponente-image img {
    opacity: 0;
}

.ponente-card:hover .ponente-image video {
    opacity: 1;
}

.video-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 77, 148, 0.9);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.ponente-card:hover .video-indicator {
    opacity: 0;
}

/* Sound toggle button */
.sound-toggle {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 77, 148, 0.9);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

.sound-toggle:hover {
    background: var(--fuchsia);
    transform: scale(1.1);
}

.ponente-card:hover .sound-toggle {
    opacity: 1;
}

/* Mobile sound toggle improvements */
@media (max-width: 768px) {
    .sound-toggle {
        opacity: 1; /* Always visible on mobile */
        top: 5px;
        left: 5px;
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .video-indicator {
        opacity: 1; /* Always visible on mobile */
        top: 5px;
        right: 5px;
        width: 40px;
        height: 40px;
        font-size: 16px;
        background: rgba(255, 77, 148, 0.95);
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
    }
    
    .video-indicator:hover {
        background: var(--fuchsia);
        transform: scale(1.1);
    }
    
    .video-indicator:active {
        transform: scale(0.95);
    }
}

.sound-toggle.active {
    background: var(--fuchsia);
}

.sound-toggle.active i {
    color: white;
}

.ponente-info {
    padding: 1.5rem;
    text-align: center;
}

.ponente-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.ponente-info p {
    color: var(--white-muted);
}

/* Sobre Nosotros Section */
.sobre-section {
    padding: 5rem 0;
    background: var(--primary-purple);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--white-transparent);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.sobre-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--fuchsia);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--white-muted);
    font-size: 1rem;
}

/* Misión Section */
.mision-section {
    padding: 5rem 0;
    background: var(--secondary-purple);
    position: relative;
}

.mision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 80%, rgba(255, 77, 148, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.mision-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
    align-items: center;
}

.mision-icon {
    width: 150px;
    height: 150px;
    background: var(--fuchsia);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(255, 77, 148, 0.4);
}

.mision-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--white-transparent);
    position: relative;
    z-index: 1;
}

/* Visión Section */
.vision-section {
    padding: 5rem 0;
    background: var(--primary-purple);
    position: relative;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 70%, rgba(255, 77, 148, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.vision-content {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 3rem;
    align-items: center;
}

.vision-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--white-transparent);
    position: relative;
    z-index: 1;
}

.vision-icon {
    width: 150px;
    height: 150px;
    background: var(--fuchsia);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(255, 77, 148, 0.4);
}

/* Valores Section */
.valores-section {
    padding: 5rem 0;
    background: var(--primary-purple);
    position: relative;
}

.valores-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 77, 148, 0.03) 0%, rgba(45, 27, 78, 0.02) 100%);
    pointer-events: none;
}

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

.valor-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 77, 148, 0.2);
    transition: all 0.3s ease;
}

.valor-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 77, 148, 0.4);
    transform: translateY(-10px);
}

.valor-icon {
    width: 80px;
    height: 80px;
    background: var(--fuchsia);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 77, 148, 0.4);
}

.valor-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.valor-card p {
    color: var(--white-muted);
    line-height: 1.6;
}

/* Beneficios Section */
.beneficios-section {
    padding: 5rem 0;
    background: var(--secondary-purple);
    position: relative;
}

.beneficios-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 77, 148, 0.03) 0%, rgba(45, 27, 78, 0.02) 100%);
    pointer-events: none;
}

.beneficios-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.beneficios-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.beneficios-text p {
    color: var(--white-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.beneficios-text ul {
    list-style: none;
    padding: 0;
}

.beneficios-text ul li {
    color: var(--white-muted);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.beneficios-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--fuchsia);
    font-weight: bold;
    font-size: 1.2rem;
}

.beneficios-highlight {
    background: rgba(255, 77, 148, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 2px solid rgba(255, 77, 148, 0.3);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: var(--fuchsia);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin: 0 auto 1rem;
    box-shadow: 0 6px 20px rgba(255, 77, 148, 0.4);
}

.beneficios-highlight h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.beneficios-highlight p {
    color: var(--white-muted);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--secondary-purple);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 77, 148, 0.03) 0%, rgba(45, 27, 78, 0.02) 100%);
    pointer-events: none;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    width: 100%;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 77, 148, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 77, 148, 0.4);
    transform: translateY(-5px);
}

.contact-item i {
    width: 70px;
    height: 70px;
    background: var(--fuchsia);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 77, 148, 0.4);
    margin-bottom: 0.5rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.contact-item p {
    color: var(--white-muted);
}

.contact-link {
    color: var(--fuchsia);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-link:hover {
    color: var(--fuchsia-light);
    text-decoration: underline;
}



/* Footer */
.footer {
    background: var(--primary-purple);
    padding: 3rem 0 1rem;
    border-top: 2px solid var(--fuchsia);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 105px;
    height: auto;
    object-fit: contain;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

.footer-section ul {
    list-style: none;
    text-align: center;
}

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

.footer-section ul li a {
    color: var(--white-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--fuchsia-light);
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--fuchsia);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 77, 148, 0.2);
    font-size: 1.2rem;
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 77, 148, 0.4);
    background: var(--fuchsia-light);
}

.social-links a:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 77, 148, 0.3);
    color: var(--white-dim);
}

/* Responsive Design */

/* Medium screens (tablets landscape) */
@media (max-width: 1024px) {
    .logo-img {
        width: 90px;
        height: auto;
        object-fit: contain;
    }

    .footer-logo img {
        width: 90px;
        height: auto;
        object-fit: contain;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-purple);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .title-powher {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .title-camp {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }

    .welcome-text::before,
    .welcome-text::after {
        display: none;
    }

    .sobre-content,
    .mision-content,
    .vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        max-width: 100%;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sobre-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ponentes-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .sponsor-item {
        width: 140px;
        height: 80px;
        margin: 0 1rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    /* Mobile-specific improvements */
    .hero-content {
        padding: 0 15px;
    }

    .info-card,
    .ponente-card {
        margin-bottom: 1rem;
    }



    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1.5rem;
    }

    .contact-item i {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-link {
        font-size: 1rem;
        padding: 0.3rem 0;
    }

    .mision-icon,
    .vision-icon {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }
    
    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .beneficios-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .valor-card {
        padding: 2rem;
    }
    
    .valor-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Mobile dropdown menu fixes */
    .nav-dropdown {
        width: 100%;
    }
    
    .dropdown-toggle {
        justify-content: center;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: none !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        margin-top: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        display: none !important;
    }
    
    .dropdown-menu.show {
        display: block !important;
    }
    
    .dropdown-item {
        color: var(--white) !important;
        padding: 0.8rem 2rem !important;
        text-align: center !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        color: var(--fuchsia-light) !important;
    }
    
    .dropdown-item.active {
        background: rgba(255, 255, 255, 0.15) !important;
        color: var(--fuchsia-light) !important;
    }

    /* Logo responsive for tablets */
    .logo-img {
        width: 80px;
        height: auto;
        object-fit: contain;
    }

    .footer-logo img {
        width: 80px;
        height: auto;
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .title-powher {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }

    .title-camp {
        font-size: 1.5rem;
        letter-spacing: 0px;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    /* Extra small screen improvements */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .info-card,
    .ponente-card {
        padding: 1.5rem;
    }



    .contact-item i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .contact-link {
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .sobre-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mision-icon,
    .vision-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .valores-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .valor-card {
        padding: 1.5rem;
    }
    
    .valor-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .beneficios-text h3 {
        font-size: 1.5rem;
    }
    
    .beneficios-text ul li {
        padding-left: 1.5rem;
    }

    .sponsor-item {
        width: 110px;
        height: 70px;
        margin: 0 0.5rem;
    }

    .video-indicator {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .sound-toggle {
        width: 25px;
        height: 25px;
        font-size: 10px;
    }

    /* Logo responsive for mobile */
    .logo-img {
        width: 60px;
        height: auto;
        object-fit: contain;
    }

    .footer-logo img {
        width: 60px;
        height: auto;
        object-fit: contain;
    }
} 