:root {
    --primary: #170f3d;
    --secondary: rgba(23,15,61,.8);
    --accent: #ff2600;
    --purple-gradient: linear-gradient(135deg,#170f3d 0%,rgba(23,15,61,.9) 100%);
    --orange-gradient: linear-gradient(135deg,#ff2600 0%,rgba(255,38,0,.8) 100%);
    --light-accent: rgba(255,38,0,.1);
    --text: #333;
    --light-text: #6c757d;
    --background: #f9f9f9;
    --card-bg: #fff;
    --border: #e0e0e0;
    --highlight: #ff2600
}

*,:after,:before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Roboto,sans-serif
}
a{
    text-decoration: none;
    color: var(--accent);
    transition: color .3s ease
}

body {
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6
}

blockquote,.blockquote {
    font-family: Oswald,sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    text-align: center;
    margin: 3% auto;
    border-top: 1px solid #000066;
    border-bottom: 1px solid #000066;
    width: 85%;
    padding: 1%
}

.thematic-card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08)
}

#contador {
    width: 100vw;
    background-color: #ff2600;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto
}

#countdown {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    left: 0
}

.wrapper {
    width: 70%;
    text-align: center;
    margin: 2%;
    padding: 2%
}

.time {
    color: #fcf8f7;
    font-size: 2.5em;
    margin: 1%
}

.label {
    display: block;
    color: #f8d1c7;
    font-size: 1.2em
}

.bg {
    height: 100vh;
    background-color: rgba(89,89,89,.75)
}

#days,#hours,#minutes,#seconds {
    width: 100px;
    font-weight: 700
}

header {
    background: var(--primary);
    color: #fff;
    padding: .5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,.15)
}

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

.logo h1 {
    font-size: 1.3rem;
    font-weight: 600
}

.logo span {
    font-size: .7rem;
    display: block;
    line-height: 1;
    opacity: .9
}

.nav-main {
    display: flex;
    list-style: none
}

.nav-main li {
    margin: 0 8px
}

.nav-main a {
    color: #fff;
    text-decoration: none;
    padding: .5rem 1rem;
    border-radius: 25px;
    transition: all .3s ease;
    font-size: .9rem
}

.nav-main a:hover,.nav-main a.active {
    background-color: var(--accent);
    transform: translateY(-2px)
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px
}

.btn-register {
    background: var(--orange-gradient);
    color: #fff;
    padding: 8px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(255,38,0,.3)
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,38,0,.4)
}

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

.hero-section {
    background: #170f3d;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.hero-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: .3
}

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

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

.hero-section .subtitle {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    opacity: .95
}

.hero-section .date-location {
    font-size: 1.1rem;
    margin-bottom: 30px;
    background: hsla(0,0%,100%,.2);
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    backdrop-filter: blur(10px)
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 30%;
    margin: auto;
}

.btn-primary,.btn-secondary {
    padding: 10px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
    font-size: 1rem;
    margin: 2% auto;
}

.btn-primary {
    background: var(--orange-gradient);
    color: #fff;
    box-shadow: 0 0 0 1px rgba(255,38,0,.4)
}

.btn-secondary {
    background: hsla(0,0%,100%,.2);
    color: #fff;
    border: 2px solid hsla(0,0%,100%,.5);
    backdrop-filter: blur(10px)
}

.btn-primary:hover,.btn-secondary:hover {
    transform: translateY(-3px)
}

.section {
    margin-bottom: 60px
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 40px;
    position: relative
}

.section-title:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--orange-gradient);
    border-radius: 2px;
    margin-bottom: 15px
}

.welcome-section {
    max-width: 1440px;
    margin: 0 auto 60px;
    text-align: justify
}

.welcome-section h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center
}

.welcome-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 20px
}

.highlight-note {
    background: var(--light-accent);
    font-family: "Roboto Condensed",sans-serif;
    font-size: 22px;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--accent);
    font-weight: 600;
    margin: 30px 0
}

.thematic-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
    margin-bottom: 40px
}

.thematic-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    text-align: center
}

.thematic-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--orange-gradient)
}

.thematic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,.12)
}

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

.thematic-card .btn-more {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease
}

.thematic-card .btn-more:hover {
    text-decoration: underline
}

.online-section {
    max-width: 1000px;
    margin: auto;
    background: rgba(187,177,236,.05);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px
}

.online-section h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center
}

.online-section h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center
}

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

.feature-list {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,.05)
}

.feature-list h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px
}

.feature-list h4 .icon {
    color: var(--accent)
}

.feature-list ul {
    list-style: none
}

.feature-list ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px
}

.feature-list ul li i {
    color: var(--accent);
    margin-top: 3px
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
    margin-bottom: 40px
}

.objective-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: all .3s ease;
    position: relative;
    overflow: hidden
}

.objective-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    /*background: var(--orange-gradient)*/
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,.12)
}

.objective-card .icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg,#170f3d 0%,#ff2600 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px
}

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

.objective-card p {
    color: var(--light-text);
    line-height: 1.6
}

.speakers-preview {
    box-shadow: 1px 1px 1px rgba(0,0,0,.08);
    background: #f5f4f4;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 40px
}

.speakers-preview h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 20px
}

.speakers-preview p {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 30px
}

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

.info-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08)
}

.info-card h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px
}

.info-card .icon {
    color: var(--accent)
}

.info-card ul {
    padding-left: 20px;
    color: var(--text)
}

.info-card ul li {
    margin-bottom: 8px
}

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

.participation-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: all .3s ease
}

.participation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,.12)
}

.participation-header {
    color: #fff;
    padding: 20px;
    text-align: center
}

.participation-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px
}

.price-note {
    font-size: .9rem;
    opacity: .9
}

.participation-body {
    padding: 25px
}

.participation-body ul {
    list-style: none;
    margin-bottom: 25px
}

.participation-body ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px
}

.participation-body ul li i {
    margin-top: 3px;
    flex-shrink: 0
}

.fa-check-circle {
    color: #28a745
}

.fa-times-circle {
    color: #dc3545
}

.btn-participate {
    display: block;
    text-align: center;
    color: #fff;
    padding: 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
    margin-top: 20px
}

.btn-participate:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,.2)
}

.organizer-section {
    background: var(--primary);
    color: #fff;
    padding: 50px 20px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 40px
}

.organizer-section h2 {
    font-size: 2rem;
    margin-bottom: 20px
}

.organizer-section p {
    font-size: 1.1rem;
    opacity: .9;
    max-width: 600px;
    margin: 0 auto
}

.footer {
    background: var(--primary);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto
}

.social-links {
    margin-top: 20px
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 15px;
    transition: all .3s ease
}

.social-links a:hover {
    color: var(--accent);
    transform: translateY(-2px)
}

.speaker-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
    padding: 2%;
}

.speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,.12)
}

.speaker-image {
    overflow: hidden
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.speaker-card:hover .speaker-image img {
    transform: scale(1.05)
}

.speaker-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column
}

.speaker-info h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 5px
}

.speaker-title {
    color: var(--accent);
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: 15px
}

.speaker-bio {
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
    text-align: justify
}

.speaker-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px
}

.topic-tag {
    background: rgba(23,15,61,.1);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: .8rem;
    font-weight: 500
}

.organizers-section {
    background: var(--background);
    padding: 60px 20px
}

.supporters-section {
    background: linear-gradient(135deg,rgba(23,15,61,.03),rgba(255,38,0,.03));
    padding: 60px 20px
}

.logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
    transition: all .3s ease
}

.logo-item:hover {
    transform: translateY(-5px)
}

.logo-image {
    height: 80px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center
}

.logo-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain
}

.logo-title {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px
}

.logo-subtitle {
    font-size: .9rem;
    color: var(--light-text);
    line-height: 1.4
}

.section-divider {
    text-align: center;
    margin: 40px 0;
    position: relative
}

.section-divider span {
    background: #fff;
    position: relative;
    z-index: 1;
    padding: 0 20px;
    font-weight: 600;
    color: var(--primary)
}

.section-divider:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
    z-index: 0
}

.contact-info {
    text-align: center;
    margin-top: 40px;
    font-size: 1.1rem
}

.contact-info a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none
}

.contact-info a:hover {
    text-decoration: underline
}

.register-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px
}

.register-header {
    text-align: center;
    margin-bottom: 40px
}

.register-header h1 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 15px
}

.register-header p {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto
}

.register-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    margin-bottom: 40px
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all .3s ease;
    margin-bottom: 20px
}

.form-control:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px var(--light-accent)
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px
}

.form-col {
    flex: 1
}

.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all .3s ease;
    margin-bottom: 20px;
    background-color: #fff
}

.form-select:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px var(--light-accent)
}

.btn-submit {
    background: var(--orange-gradient);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    transition: all .3s ease;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(255,38,0,.3);
    cursor: pointer;
    display: block;
    margin: 30px auto 0
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,38,0,.4)
}

.register-footer {
    text-align: center;
    color: var(--light-text);
    font-size: .9rem
}

.register-footer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600
}

.register-footer a:hover {
    text-decoration: underline
}

.info-text {
    background-color: rgba(23,15,61,.05);
    border-left: 4px solid var(--accent);
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 30px
}

.info-text a {
    color: var(--accent);
    font-weight: 600
}

.info-text p {
    margin-bottom: 10px
}

.info-text p:last-child {
    font-weight: 600;
    margin-bottom: 0
}

#editor {
    width: 100%;
    min-height: 200px;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 20px;
    resize: vertical
}

.text-center {
    text-align: center
}
.jq-editor-btn-active {
    background-color: #e0e0e0;
    box-shadow: inset 0 0 3px rgba(0,0,0,0.2);
    color: #4285f4;
}

.jq-editor-container {
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px
}

.jq-editor-toolbar {
    background: #f5f5f5;
    padding: 5px;
    border-bottom: 1px solid #ddd;
    display: flex;
    flex-wrap: wrap;
    gap: 2px
}

.jq-editor-btn {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 5px 8px;
    cursor: pointer;
    min-width: 30px;
    text-align: center
}

.jq-editor-btn:hover {
    background: #e9e9e9
}

.jq-editor-btn.active {
    background: #d4d4d4
}

.jq-editor-dropdown {
    position: relative;
    display: inline-block
}

.jq-editor-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,.2);
    z-index: 1;
    top: 100%;
    left: 0
}

.jq-editor-dropdown:hover .jq-editor-dropdown-content {
    display: block
}

.jq-editor-content {
    min-height: 200px;
    padding: 10px;
    outline: none
}

.jq-editor-content:focus {
    border-color: #66afe9;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)
}

.jq-editor-content img {
    max-width: 100%
}

.jq-editor-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.4)
}

.jq-editor-modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 5px
}

.jq-editor-modal-tabs {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd
}

.jq-editor-modal-tab {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 2px solid transparent
}

.jq-editor-modal-tab.active {
    border-bottom: 2px solid #4285f4;
    font-weight: 700
}

.jq-editor-modal-panel {
    display: none
}

.jq-editor-modal-panel.active {
    display: block
}

.jq-editor-modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer
}

.jq-editor-modal-close:hover {
    color: #000
}

.jq-editor-file-input {
    display: none
}

.jq-editor-upload-area {
    border: 2px dashed #ddd;
    padding: 20px;
    text-align: center;
    margin-bottom: 15px;
    cursor: pointer
}

.jq-editor-upload-area:hover {
    border-color: #4285f4
}

.jq-editor-preview {
    max-width: 100%;
    max-height: 200px;
    display: none;
    margin: 10px auto
}

.jq-editor-modal-actions {
    text-align: right;
    margin-top: 15px
}

.jq-editor-modal-btn {
    padding: 8px 15px;
    margin-left: 10px;
    cursor: pointer;
    border: none;
    border-radius: 3px
}

.jq-editor-modal-btn-primary {
    background-color: #4285f4;
    color: #fff
}

.jq-editor-modal-btn-primary:hover {
    background-color: #3367d6
}

.jq-editor-modal-btn-secondary {
    background-color: #f1f1f1
}

.jq-editor-modal-btn-secondary:hover {
    background-color: #e1e1e1
}

.jq-editor-word-counter {
    margin-top: 10px;
    padding: 8px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    text-align: right;
    font-size: .9em;
    color: #666
}

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

.ponencias-header {
    text-align: center;
    margin-bottom: 40px
}

.ponencias-header h1 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 15px
}

.ponencias-header p {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 800px;
    margin: 0 auto
}

.ponencias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(350px,1fr));
    gap: 30px;
    margin-top: 40px
}

.ponente-card {
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 0 0 1px rgba(0,0,0,.08);
    transition: all .3s ease;
    position: relative;
    height: 550px
}

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

.ponente-image {
    height: 300px;
    overflow: hidden
}

.ponente-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.ponente-card:hover .ponente-image img {
    transform: scale(1.05)
}

.ponente-info {
    padding: 25px
}

.ponente-info h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 5px
}

.ponente-title {
    color: var(--accent);
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: 15px
}

.ponente-bio {
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.6
}

.ponente-temas {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px
}

.tema-tag {
    background: rgba(23,15,61,.1);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 500
}

.ponencia-details {
    background: rgba(255,38,0,.05);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px
}

.ponencia-details h4 {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 10px
}

.ponencia-details p {
    font-size: .9rem;
    line-height: 1.5
}

.ponencia-container {
    max-width: 1200px;
    margin: 2rem auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    overflow: hidden;
    border: 1px solid #eaeaea;
    font-family: Roboto,sans-serif;
    padding: 2%
}

.ponencia-header {
    background: #170f3d;
    color: #fff;
    padding: 1.5rem;
    border-bottom: 4px solid #ff2600
}

.ponencia-title {
    font-size: 1.8rem;
    margin-bottom: .75rem;
    font-weight: 600
}

.ponencia-author {
    font-size: 1.1rem;
    margin-bottom: .5rem
}

.ponencia-affiliation {
    font-style: italic;
    opacity: .85;
    font-size: .95rem
}

.ponencia-body {
    padding: 1.5rem;
    color: #444;
    line-height: 1.7
}

.section-title {
    color: #170f3d;
    font-size: 1.4rem;
    margin: 2% auto;
    padding-bottom: .5rem
}

.coauthors-list {
    margin: 1rem 0 1.5rem;
    padding-left: 1.25rem;
    list-style-type: none
}

.coauthor-item {
    margin-bottom: .5rem;
    position: relative;
    padding-left: 1.25rem
}

.coauthor-item:before {
    content: "•";
    color: #ff2600;
    position: absolute;
    left: 0;
    font-weight: 700
}

.keywords-container {
    margin: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    text-align: center;
    align-items: center;
    align-content: center
}

.keyword-tag {
    display: inline-block;
    background: rgba(255,38,0,.1);
    color: #ff2600;
    padding: .4rem .8rem;
    border-radius: 1rem;
    font-size: .85rem;
    font-weight: 500;
    border: 1px solid rgba(255,38,0,.2)
}

.ponencia-content {
    margin: 1.25rem 0;
    font-family: Roboto,sans-serif;
    text-align: justify;
    font-size: 1.1rem;
    padding: 1% 2%
}

.ponencia-content p {
    margin-bottom: 1rem;
    font-family: Roboto,sans-serif
}

.action-buttons {
    display: flex;
    gap: .75rem;
    margin-top: 2rem;
    flex-wrap: wrap
}

.btn {
    padding: .7rem 1.25rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: .95rem;
    transition: all .2s ease;
    text-align: center
}

.btn-primary {
    background: #ff2600;
    color: #fff;
    border: 1px solid #ff2600
}

.btn-secondary {
    background: #fff;
    color: #ff2600;
    border: 1px solid #ff2600
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,.1)
}

.autores-container {
    margin-top: 15px
}



.ponencia-author {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600
}

.ponencia-coauthor {
    font-size: 1rem;
    margin: 3px 0;
    opacity: .9
}

.coautores-header {
    margin: 8px 0;
    padding-left: 15px;
    border-left: 3px solid hsla(0,0%,100%,.3)
}

.ponencia-affiliation {
    font-style: italic;
    margin-top: 8px;
    font-size: .95rem;
    opacity: .85
}

.comentariosPonencia {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eaeaea
}

.comentarios-container {
    max-width: 800px;
    margin: 0 auto
}

.nuevo-comentario {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid #eaeaea
}

.nuevo-comentario h3 {
    color: #170f3d;
    margin-bottom: 1rem;
    font-size: 1.2rem
}

.form-comentario textarea {
    width: 100%;
    min-height: 120px;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-family: inherit;
    resize: vertical
}

.lista-comentarios {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.comentario,.respuesta {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,.05)
}

.respuesta {
    margin-top: 1rem;
    margin-left: 2rem;
    background: #f8f9fa;
    border-left: 3px solid #ff2600
}

.comentario-header,.respuesta-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: .8rem;
    flex-wrap: wrap;
    gap: .5rem
}

.comentario-autor,.respuesta-autor {
    font-weight: 600;
    color: #170f3d
}

.comentario-autor small,.respuesta-autor small {
    font-weight: 400;
    color: #6c757d
}

.comentario-fecha,.respuesta-fecha {
    color: #6c757d;
    font-size: .85rem
}

.comentario-content p,.respuesta-content p {
    margin: 0;
    line-height: 1.6;
    color: #333
}

.speakers-section {
    padding: 60px 0;
    background-color: #f9f9f9
}

.filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #333;
    cursor: pointer;
    transition: all .3s ease
}

.filter-btn:hover,.filter-btn.active {
    background: #ff2600;
    color: #fff;
    border-color: #ff2600
}

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

.ponente-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,.1);
    transition: all .3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 15px
}

.speaker-image {
    width: 150px;
    height: 150px;
    margin: 20px auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ff2600
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.speaker-info {
    padding: 0 20px;
    flex: 1
}

.speaker-name {
    font-size: 1.2rem;
    color: #170f3d;
    margin-bottom: 5px
}

.speaker-org {
    color: #6c757d;
    font-size: .9rem;
    margin-bottom: 15px
}

.speaker-themes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px
}

.speaker-footer {
    padding: 0 20px 20px;
    margin-top: auto
}

.theme-tag {
    background: rgba(255,38,0,.1);
    color: #ff2600;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: .8rem
}



.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
    gap: 20px;
    padding: 20px
}

@media (max-width:768px) {
    .hero-section h1 {
        font-size: 2.2rem
    }
    
    .hero-section .subtitle {
        font-size: 1.1rem
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center
    }
    
    .nav-main {
        display: none
    }
    
    .header-container {
        flex-direction: column;
        gap: 15px;
        z-index: 1000
    }
    
    .participation-grid,.thematic-areas {
        grid-template-columns: 1fr
    }
    
    .online-features {
        grid-template-columns: 1fr
    }
    
    .speakers-grid {
        grid-template-columns: 1fr
    }
    
    .speaker-card {
        max-width: 280px;
        margin: 15px auto
    }
    
    .register-header h1 {
        font-size: 2rem
    }
    
    .register-card {
        padding: 30px 20px
    }
    
    .form-row {
        flex-direction: column;
        gap: 0
    }
    
    .ponencias-grid {
        grid-template-columns: 1fr
    }
    
    .ponente-image {
        height: 250px
    }
    
    .ponencias-header h1 {
        font-size: 2rem
    }
    
    .ponencia-container {
        margin: 1rem;
        border-radius: 6px
    }
    
    .ponencia-title {
        font-size: 1.5rem;
        z-index: 1;
    }
    
    .section-title {
        font-size: 1.25rem
    }
    
    .action-buttons {
        flex-direction: column
    }
    
    .btn {
        width: 100%
    }
    
    .comentario-header,.respuesta-header {
        flex-direction: column
    }
    
    .respuesta {
        margin-left: 1rem
    }
    
    .logos-container {
        gap: 30px
    }
    
    .logo-item {
        max-width: 150px
    }
    
    .logo-image {
        height: 60px
    }
}
.ponente-profile-section {
            
            border-radius: 12px;
            padding: 30px;
            
            max-width: 1200px;
            margin: 30px auto;
        }
        
        .profile-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .profile-header {
            display: flex;
            align-items: flex-start;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .profile-photo-container {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid #ff2600;
        }
        
        .profile-photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .profile-basic-info {
            flex: 1;
            min-width: 250px;
        }
        
        .profile-name {
            color: #170f3d;
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .profile-affiliation {
            color: #ff2600;
            font-weight: 600;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .presentation-title-container {
            margin: 15px 0;
            padding: 10px 0;
            border-top: 1px dashed #eee;
            border-bottom: 1px dashed #eee;
        }
        
        .presentation-title-container h3 {
            color: #170f3d;
            font-size: 1.2rem;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .presentation-title {
            font-size: 1.1rem;
            line-height: 1.5;
            color: #333;
        }
        
        .profile-country, .profile-orcid {
            color: #555;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        @media (max-width: 768px) {
            .profile-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            
            .profile-name {
                font-size: 1.5rem;
            }
            
            .profile-affiliation, 
            .profile-country, 
            .profile-orcid,
            .presentation-title-container h3 {
                justify-content: center;
            }
        }

        .speaker-academic-profile p{
            text-align: justify !important;
            margin: 5px 0 !important;
        }
        .speaker-academic-profile{
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,.1);
            transition: all .3s ease;
            text-align: center;
            display: flex;
            flex-direction: column;
            
            margin: 15px;
            padding: 4%;
        }

.curriculum-results {
    margin: 40px 0;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 10px;
    
}

.section-title {
    color: #2e1a47;
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
}

.results-card {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    width: 45%;
    margin: 0 auto;
}

.result-icon {
    font-size: 3.5rem;
    color: #6b2d5c;
    padding: 15px;
    background-color: #f8d7da;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    text-align: center;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-content h4 {
    color: #2e1a47;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.result-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.result-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-item i {
    color: #e63946;
    font-size: 1.2rem;
}

.benefit-item span {
    color: #333;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .results-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .benefit-item {
        justify-content: center;
    }
}

 /* Estilos del modal */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .modal-container {
            background-color: white;
            border-radius: 10px;
            width: 90%;
            max-width: 700px;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            animation: modalFadeIn 0.3s;
            margin: auto;
        }
        
        @keyframes modalFadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .modal-header {
            background-color: #6b2d5c;
            color: white;
            padding: 15px 20px;
            border-radius: 10px 10px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .modal-title {
            margin: 0;
            font-size: 1.3rem;
            color: white !important;
        }
        
        .close-modal {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .modal-body {
            padding: 20px;
        }
        
        .instruction-section {
            margin-bottom: 20px;
        }
        
        .instruction-section h3 {
            color: #2e1a47;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .instruction-section h3 i {
            margin-right: 10px;
            color: #e63946;
        }
        
        .instruction-section ul {
            padding-left: 20px;
        }
        
        .instruction-section li {
            margin-bottom: 8px;
            line-height: 1.5;
        }
        
        .important-note {
            background-color: #f8d7da;
            border-left: 4px solid #e63946;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        
        .steps-list {
            counter-reset: step-counter;
            list-style-type: none;
            padding-left: 0;
        }
        
        .steps-list li {
            counter-increment: step-counter;
            margin-bottom: 15px;
            position: relative;
            padding-left: 35px;
        }
        
        .steps-list li:before {
            content: counter(step-counter);
            position: absolute;
            left: 0;
            top: 0;
            background-color: #6b2d5c;
            color: white;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        .modal-footer {
            padding: 15px 20px;
            text-align: right;
            border-top: 1px solid #eee;
        }
        
        .btn-close {
            background-color: #6b2d5c;
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .btn-close:hover {
            background-color: #5a2450;
        }
        
        /* Botón para abrir el modal (opcional) */
        .open-modal-btn {
            background-color: #e63946;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            margin: 20px auto;
            display: block;
            transition: background-color 0.3s;
        }
        
        .open-modal-btn:hover {
            background-color: #d62c39;
        }
          /* Estilos del botón de WhatsApp */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px;
            right: 40px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .whatsapp-float:hover {
            background-color: #128C7E;
            transform: scale(1.1);
            box-shadow: 2px 2px 10px #666;
        }
        
        .whatsapp-float::after {
            content: "¿Necesitas ayuda?";
            position: absolute;
            width: 160px;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: #25d366;
            color: white;
            padding: 8px 12px;
            border-radius: 20px 20px 0 20px;
            font-size: 14px;
            font-weight: bold;
            opacity: 0;
            transition: all 0.3s ease;
            pointer-events: none;
        }
        
        .whatsapp-float:hover::after {
            opacity: 1;
            right: 75px;
        }
        
        /* Para pantallas pequeñas */
        @media (max-width: 768px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 30px;
                right: 20px;
                font-size: 25px;
            }
            
            .whatsapp-float::after {
                display: none;
            }
        }

        .whatsapp-icon{
            width: 40px;
            height: 40px;
        }

        .share-btn {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s;
}

.share-btn:hover {
  transform: scale(1.2);
}

.material-icons {
  vertical-align: middle;
  font-size: 1.2em;
}

.share-btn {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
  }
  
  .social-icon, .material-icons {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    transition: transform 0.2s;
  }
  
  .share-btn:hover .social-icon,
  .share-btn:hover .material-icons {
    transform: scale(1.2);
  }

  .datosPerfil {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 15px;
    }
    
    .profile-image {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid var(--card-bg);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .info-perfil {
        flex: 1;
    }
    
    .nombrePerfil {
        font-size: 1.8rem;
        font-weight: 600;
        color: var(--primary);
        display: block;
        margin-bottom: 10px;
    }
    
    .detalles-perfil {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .dato-perfil {
        display: flex;
        align-items: center;
        font-size: 0.95rem;
        color: var(--text);
    }
    
    .icono-perfil {
        font-size: 1.2rem;
        margin-right: 8px;
        color: var(--accent);
    }

    .perfil-academico{
        padding: 2% 4%;
        background: var(--card-bg);
        text-align: justify;
    }
    
    @media (max-width: 600px) {
        .datosPerfil {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .dato-perfil {
            justify-content: center;
        }
    }

    .card a{
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
    }

    .card a:hover{
        text-decoration: underline;
    }
     /* Cards */
        .card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }
        
        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            border-bottom: 1px solid var(--border);
            padding-bottom: 15px;
        }
        
        .card-title {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--primary);
        }

      .tabla-ponencias {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        font-family: 'Roboto', sans-serif;
    }
    
    .tabla-ponencias th {
        background-color: #170f3d;
        color: white;
        padding: 12px 15px;
        text-align: left;
        font-weight: 500;
    }
    
    .tabla-ponencias td {
        padding: 12px 15px;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .fila-gris {
        background-color: #444343 !important;
    }
    
    .fila-blanca {
        background-color: white;
    }
    
    .tabla-ponencias tr:hover {
        background-color: #e8f4f8;
    }
    
    .alert {
        padding: 15px;
        border-radius: 4px;
        margin: 20px 0;
    }
    
    .alert-info {
        background-color: #e7f4ff;
        color: #0062a3;
        border-left: 4px solid #0062a3;
    }

    .tables-wrapper {
        display: flex;
        gap: 20px;
        margin: 20px 0;
    }
    
    .table-container {
        flex: 1;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        padding: 15px;
    }
    
    .table-container h2 {
        margin-top: 0;
        color: var(--primary);
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }
    
    @media (max-width: 768px) {
        .tables-wrapper {
            flex-direction: column;
        }
    }

    .filtros-container {
    margin-bottom: 20px;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.filtros-row {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    position: relative;
    min-width: 250px;
}

.search-box i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

.search-box input {
    padding-left: 35px;
}

.tabla-ponencias {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tabla-ponencias th {
    background-color: #170f3d;
    color: white;
    padding: 12px 15px;
    text-align: left;
    font-weight: 500;
}

.tabla-ponencias td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
}

.tabla-ponencias tr:nth-child(even) {
    background-color: #f9f9f9;
}

.tabla-ponencias tr:hover {
    background-color: #f0f0f0;
}

.badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.badge-warning {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.badge-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.action-btn {
    background: none;
    border: none;
    color: #170f3d;
    cursor: pointer;
    margin: 0 5px;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.action-btn:hover {
    color: #ff2600;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .filtros-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box, select {
        width: 100%;
    }
}
   
/* Agenda Styles */
.agenda-container {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    padding: 2%;
    font-size: 18px;
}

.agenda-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
}

.tab-btn {
    flex: 1;
    padding: 15px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--light-text);
    transition: all 0.3s ease;
    position: relative;
    font-size: 18px;
    font-weight: 600;
}

.tab-btn.active {
    color: var(--primary);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--orange-gradient);
}

.tab-btn:hover:not(.active) {
    background: var(--light-accent);
    color: var(--accent);
}

.agenda-content {
    padding: 20px;
}

.day-content {
    display: none;
}

.day-content.active {
    display: block;
}

.time-slot {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px dashed var(--border);
}

.time-slot:last-child {
    border-bottom: none;
}

.time-slot.highlight {
    background: var(--light-accent);
    margin: 0 -20px;
    padding: 20px;
    border-radius: 8px;
    border-bottom: none;
}

.time {
    min-width: 120px;
    font-weight: 600;
    color: var(--primary);
    padding-right: 20px;
    font-size: 18px !important;
}

.event {
    flex: 1;
}

.event h3 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.speaker {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 10px;
    font-weight: 700 !important;
    font-size: 20px !important;
}

.description {
    color: var(--text);
    margin-bottom: 15px;
}

.workshops {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.workshop h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.workshop .speaker {
    font-size: 0.9rem;
}

.event-btn {
    background: var(--orange-gradient);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.event-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 38, 0, 0.3);
}

.agenda-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

#download-agenda, #my-agenda {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

#download-agenda {
    background: var(--card-bg);
    color: var(--primary);
    border: 2px solid var(--primary);
}

#download-agenda:hover {
    background: rgba(23, 15, 61, 0.05);
}

#my-agenda {
    background: var(--orange-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 38, 0, 0.3);
}

#my-agenda:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 38, 0, 0.4);
}

@media (max-width: 768px) {
    .time-slot {
        flex-direction: column;
    }
    
    .time {
        margin-bottom: 10px;
        padding-right: 0;
    }
    
    .workshops {
        grid-template-columns: 1fr;
    }
    
    .agenda-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Lunch highlight style */
.time-slot.lunch {
    background: rgba(0, 100, 255, 0.1);
    margin: 0 -20px;
    padding: 20px;
    border-radius: 8px;
    border-bottom: none;
}

.time-slot.lunch h3 {
    color: #170f3d;;
}

.time-slot.lunch .speaker {
    color: #170f3d;
}

.time-slot.lunch .time {
    color: #170f3d;
}

.time-slot.lunch .event-btn {
    background: #170f3d;
}
/* Estilos para la sección de comentarios */
.comments-section {
    margin: 40px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.section-title {
    color: #170f3d;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.comments-container {
    max-width: 800px;
    margin: 0 auto;
}

.new-comment {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.new-comment h3 {
    color: #170f3d;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.comment-form, .reply-form {
    margin-top: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #ff2600;
    outline: none;
}

.btn {
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #ff2600;
    color: white;
}

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

.btn-secondary {
    background-color: #f0f0f0;
    color: #333;
}

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

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.comment, .reply {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: #170f3d;
}

.comment-date {
    font-size: 0.85rem;
    color: #6c757d;
    display: block;
    margin-top: 3px;
}

.comment-content p {
    margin: 0;
    line-height: 1.6;
    color: #333;
}

.comment-actions {
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
}

.reply-btn {
    background: none;
    border: none;
    color: #ff2600;
    font-weight: 600;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.reply-btn:hover {
    background-color: rgba(255, 38, 0, 0.1);
}

.reply-form-container {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.form-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.replies-list {
    margin-top: 20px;
    padding-left: 20px;
    border-left: 3px solid rgba(255, 38, 0, 0.2);
}

.reply {
    margin-top: 15px;
    padding: 15px;
    background: #fafafa;
}

/* Responsive */
@media (max-width: 768px) {
    .comments-section {
        padding: 20px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .replies-list {
        padding-left: 10px;
    }
}