/* Estilos Generales */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

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

.section {
    padding: 60px 0;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
    font-size: 2.0em;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.bg-light {
    background-color: #f9f9f9;
}

/* Header */
header {
    background-image: url('img/header-bg.jpg');
    /*background-size: cover;
    background-position: center;*/  
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
    /*background-position: top;
    background-origin: border-box;
    background-attachment: fixed;*/
    background-repeat: no-repeat;
}

header:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}

.header-content {
    position: relative;
    z-index: 1;
}
header h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

header p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Botones */
.btn-primary {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #c0392b;
}

/* Ajustes */
.ajustes{
    height: 195px;
}

a{
    text-decoration: none;
}

/* Cards */
.card {
    background-color: white;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.card i{
    font-size: 40px;
    color:#fdae61;
    margin-bottom: 15px;
}

.partner-card:hover{
    background-color: bisque;
}

.speaker-card {
    background-color: white;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.speaker-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}
.speaker-bio {
    font-style: italic;
    color: #777;
}
/* Agenda */
.agenda-table {
    width: 100%;
    border-collapse: collapse;
}

.agenda-table th,
.agenda-table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
    /*border-style: hidden;*/
}

.agenda-table th {
    background-color: #f2f2f2;
}

/* Testimonials */
.testimonial-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-author {
    font-style: italic;
    color: #777;
    margin-top: 10px;
}

/* Precios */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.pricing-card {
    background-color: white;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.price {
    font-size: 2em;
    color: #e74c3c;
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-features li {
    margin-bottom: 8px;
}
/* FAQ */
.faq{
    max-width: 800px;
    margin: 0 auto;
}
.faq-question {
    margin-bottom: 20px;
    background-color: #eee ;
    padding: 20px;
    border-radius: 8px;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-question:hover {
    background-color: bisque;
  }

.faq-question h3 {
    margin-bottom: 10px;
    color: #333;
}

.faq-question p {
    color: #555;
}
/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}
footer a{
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease;
}
footer a:hover{
    color:#3498db;
}

.fecha-destacada {
    text-align: center;
}

/*Image social media*/

#redes{
    visibility: hidden;
    height: 10px;   
    width: 10px;
}


/* Video Style */
.video-container {
    position: relative;
    width: 50%;
    padding-bottom: 56.25%; /* Proporción 16:9 */
  }
  
  .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

/* Responsive */
@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .grid-4{
        grid-template-columns: 1fr;
    }
     .pricing-grid {
       grid-template-columns: 1fr;
    }
    header h1 {
        font-size: 2.5em;
    }
    header{
        background-image: url('./img/responsive.png');
        background-size: cover;
        background-position: top;
    }
    .footer-content{
        flex-direction: column;
    }
    footer ul{
        margin-top: 15px;
    }
}