/* Reset and Base Styles */

body {
    font-family: 'Albert Sans', sans-serif;
    background-color: #170935;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}



a {
  text-decoration: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(23, 9, 53, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.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;
    gap: 10px;
}

.nav-logo img {
    height: 40px;
}

.nav-logo span {
    font-size: 24px;
    font-weight: 700;
    color: #f54ea6;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #f54ea6;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #170935 0%, #2a1154 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23f54ea6" fill-opacity="0.05"><circle cx="30" cy="30" r="1"/></g></g></svg>');
    animation: float 20s ease-in-out infinite;
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 70vh;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.title-main {
    display: block;
    color: #ffffff;
}

.title-highlight {
    display: block;
    background: linear-gradient(45deg, #f54ea6, #72dfdd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px #f54ea6); }
    to { filter: drop-shadow(0 0 30px #72dfdd); }
}

.hero-date {
    font-size: 1.2rem;
    color: #72dfdd;
    font-weight: 600;
}

.hero-image {
    text-align: center;
    z-index: 2;
}

.trophy-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 20px 60px rgba(245, 78, 166, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

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

/* Hero Performers Section */
.hero-performers {
    margin-top: 80px;
    padding: 60px 0;
    background: rgba(42, 17, 84, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.performers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.performer-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.performer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(245, 78, 166, 0.3);
}

.performer-card.featured {
    background: linear-gradient(135deg, #f54ea6, #72dfdd);
    transform: scale(1.1);
}

.performer-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #f54ea6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.trophy-main {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.performer-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.performer-info p {
    font-size: 0.9rem;
    color: #cccccc;
}

.hero-sponsors {
    text-align: center;
    padding: 0 20px;
}

.sponsor-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.sponsor-logo {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.sponsor-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #2a1154 0%, #170935 100%);
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #ffffff;
}

.about-text {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.8;
}

.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    filter: drop-shadow(0 0 20px #f54ea6);
}

/* Editions Section */
.editions {
    padding-top: 3rem;
    padding-bottom: 100px;
    background: #ffffff;
    color: #333333;
}

.section-subtitle {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #170935;
}

.section-description {
    text-align: center;
    line-height: 1.2;
    font-size: 1.8rem;
    margin-bottom: 60px;
    color: #17003b;
}

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

.edition-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

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

.edition-card h4 {
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    color: #170935;
}

/* Statistics Section */
.statistics {
    padding-top: 40px;
    background: #6be3ff;
}

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

.stat-card {
    padding-bottom: 15px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    transform: skewY(-2deg);
}

.stat-votes {
    background: linear-gradient(135deg, #f54ea6, #e91e63);
}

.stat-trophies {
    background: linear-gradient(135deg, #f54ea6, #e91e63);
}

.stat-countries {
    background: linear-gradient(135deg, #f54ea6, #e91e63);
}

.stat-card img {
    margin: 0 auto;
    width: 60px;
    height: 60px;
    margin-bottom: 0px;
    filter: brightness(0) invert(1);
}

.stat-number {
    font-size: 6rem;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 0px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Ceremony Section */
.ceremony {
    padding: 40px 0;
    background: #6be3ff;
}

.ceremony-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.ceremony-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.ceremony-text p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.8;
}

.ceremony-icon {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 30px;
}



.ceremony img {
   /*  max-height: 440px; 
    width: auto !important; */
    margin-bottom: 25px;
}

.ceremony .text-wrapper{
    color: #17003b;
}

.ceremony .display-7{
    line-height: 1.2;
    font-size: 1.8rem;
    font-weight: 400;;
}

.ceremony .textceremony {
    display: flex;
    align-items: center;
}

.ceremony-photo {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.ceremony-photo:hover {
    transform: scale(1.05);
}

/* Presenter Section */
.presenter {
    padding-top: 50px;
    padding-bottom: 20px;
    background: linear-gradient(135deg, #2a1154 0%, #170935 100%);
    text-align: center;
}

.presenter-subtitle {
    font-size: 1.2rem;
    color: #72dfdd;
    margin-bottom: 30px;
    font-weight: 600;
}

.presenter-image {
    max-width: 800px;
    height: auto;
    margin: 0 auto;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.presenter-name {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
}

.presenter-description {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 0px;
    margin-bottom: 2rem;
}

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

.countdown-number {
    display: block;
    font-size: 6rem;
    font-weight: 800;
    color: #f54ea6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.countdown-label {
    font-size: 1.5rem;
    color: #cccccc;
    font-weight: 600;
}

.btn-secondary, .btn-secondary:active {
    background-color: #ff57be !important;
    border-color: #ff57be !important;
    color: #ffffff !important;
    font-size: 1.8rem;
    padding: 1.2rem;
}

.btn-secondary:hover {
    box-shadow: none;
    color: #ff57be !important;
    background-color: #fff !important;
}



/* Countries Section */
.countries {
    padding: 40px 0;
    background: #ffffff;
    color: #333333;
}

.countries-title {
    font-size: 3.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #170935;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.country-flag {
    width: 160px;
    margin: 0 auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.countries .card {
    transition: all 0.3s;
    height: fit-content;
    padding: 1rem 0;
    opacity: 1;
    margin-bottom: 1rem;
}

.country-flag:hover {
    transform: scale(1.1);
}

/* Sponsor Section */
.sponsor {
    padding: 80px 0;
    background: linear-gradient(135deg, #170935 0%, #2a1154 100%);
}

.sponsor-title {
    font-size: 3.3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;
}

.sponsor-subtitle {
    text-align: center;
    font-size: 1.8rem;
    color: #cccccc;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.sponsor-card {
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.sponsor-card:hover {
    transform: translateY(-10px);
}

.presenting {
    background: linear-gradient(135deg, #f7f159, #ffc107);
    color: #333333;
}

.gold {
    background: linear-gradient(135deg, #72dfdd, #00bcd4);
    color: #ffffff;
}

.silver {
    background: linear-gradient(135deg, #f54ea6, #e91e63);
    color: #ffffff;
}

.sponsor-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.sponsor-card ul {
    height: 280px;
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.sponsor-card li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.sponsor-card li::before {
    content: '~ ';
    font-weight: bold;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    padding: 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin-top: 20px;
}

/* FAQ Section */
.faq {
    padding: 70px 0;
    background: #ffffff;
    color: #333333;
}

.faq-title {
    font-size: 3.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #170935;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 3px solid #1e0c40;
    padding-left: 1rem;
    padding-right: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.8rem;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #6738c7;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #6738c7;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 25px;
    color: #666666;
    line-height: 1.5;
    font-size: 1.3rem;;
}

.faq-item:hover {
    background: rgb(85 78 241 / 8%);
    border-radius: 10px;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Location Section */
.location {
    padding: 100px 0;
    background: linear-gradient(135deg, #170935 0%, #2a1154 100%);
}

.location-title {
    font-size: 6rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.highlight {
    color: #72dfdd;
}

.map-container {
    height: 33rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.map-container iframe  {
    height: 100%;
    width: 100%;
    border-radius: 2rem;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: #0d0523;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-content p {
    color: #cccccc;
    font-size: 0.9rem;
}

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

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f54ea6;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #cccccc;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #f54ea6;
}

.boton-nominacion{
    max-width: 450px;
    display: flex;
    padding-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    #nominados{
        height: 800px;
    }

    .nav-links {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .secpremios{
        padding-bottom: 0 !important;
    }

    .secpremios h1 strong {
    font-size: 2rem !important;    
}

.secpremios p {
    font-size: 1.2rem !important;    
}

.secbanner{
    padding-bottom: 3rem !important;
}

.editions h3 {
    font-size: 2rem !important;
    
}

.section-description {    
    font-size: 1.3rem !important;    
}

.countries-title {    
    margin-bottom: 20px !important;
    
}

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

    .ceremony-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* .ceremony img {
        max-height: 455px;        
   
   } */

   .ceremony{
        padding: 20px 15px;
    } 

    .ceremony .row>* {
    
    padding-left: 0;
}

.countries-title {
    font-size: 2rem;
    
}

.sponsor-title {
    font-size: 2rem;
}

.sponsor-subtitle {    
    font-size: 1.4rem ;    
}

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

.faq-question {   
    font-size: 1.4rem;
}

.faq{
    padding: 35px 0;
    
}

.location-title {
    font-size: 2.6rem;    
    margin-bottom: 30px;
}

.location{
    padding: 50px 0;
    
}

.sponsor {
    padding: 40px 0;
}

.editions {
    padding-bottom: 40px;
    
}
    

    .countdown {
        gap: 20px;
    }

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

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

    .countries-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .performers-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .performer-card.featured {
        transform: scale(1);
        order: -1;
    }

    .sponsor-logos {
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .presenter-name {
        font-size: 2rem;
    }

    .countdown {
        gap: 15px;
    }

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