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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #542f96 0%, #542f96 60%, #3a2169 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 80px 0 50px;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.logo-container {
    margin-bottom: 30px;
}

.logo-img {
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.hero h1 span {
    display: block;
    color: #ccea68;
    font-size: 4rem;
}

.hero .subtitle {
    font-size: 1.2rem;
    margin: 20px 0 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1.2s ease-out;
}

/* Destaque para data, local e horário */
.date-time-highlight {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin: 30px auto;
    max-width: 600px;
    border: 2px solid rgba(204, 234, 104, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1.4s ease-out;
}

.date-time-highlight h2 {
    font-size: 2rem;
    color: #ccea68;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.date-time-highlight p {
    font-size: 1.3rem;
    margin: 10px 0;
}

.date-time-highlight i {
    margin-right: 10px;
    color: #da873e;
    font-size: 1.4rem;
}

.feature-boxes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 50px 0;
}

.feature-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px 20px;
    width: 200px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 2rem;
    color: #ccea68;
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-box p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Botão grande para inscrição */
.cta-button-large {
    display: inline-block;
    padding: 25px 60px;
    background: linear-gradient(45deg, #da873e, #ccea68);
    color: #542f96;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    margin-top: 40px;
    animation: pulse 2s infinite;
}

.cta-button-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #ccea68, #da873e);
}

.limited-spots {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
}

/* Background Elements */
.bg-shape {
    position: absolute;
    z-index: 1;
}

.bg-shape-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(106, 168, 66, 0.2) 0%, rgba(106, 168, 66, 0) 70%);
    border-radius: 50%;
}

.bg-shape-2 {
    bottom: 10%;
    right: 5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(218, 135, 62, 0.2) 0%, rgba(218, 135, 62, 0) 70%);
    border-radius: 50%;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #da873e, #ccea68);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Event Info Section */
.event-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 100px 0;
}

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

.info-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.info-card i {
    font-size: 2rem;
    color: #ccea68;
    margin-bottom: 15px;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ccea68;
}

.info-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Speakers Section */
.speakers-section {
    background: rgba(84, 47, 150, 0.7);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.speakers-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(204, 234, 104, 0.1)" stroke-width="2"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.speaker-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    margin: 0 auto;
}

.speaker-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: all 0.4s ease;
}

.speaker-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(204, 234, 104, 0.3);
}

.speaker-img {
    width: 450px;
    height: 450px;
    object-fit: cover;
    transition: all 0.4s ease;
}

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

.speaker-info {
    padding: 25px;
    position: relative;
}

.speaker-info:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(45deg, #da873e, #ccea68);
}

.speaker-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.speaker-info h4 {
    font-size: 1.1rem;
    color: #ccea68;
    margin-bottom: 15px;
    font-weight: 500;
}

.speaker-info p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Schedule Section */
.schedule-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.05);
}

.schedule-list {
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
}

.schedule-day-title {
    font-size: 2rem;
    color: #ccea68;
    margin-bottom: 30px;
    text-align: center;
}

.schedule-item {
    display: flex;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.schedule-time {
    min-width: 150px;
    font-weight: 600;
    color: #da873e;
}

.schedule-content {
    flex-grow: 1;
}

.schedule-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.schedule-speaker {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.schedule-table th,
.schedule-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-table th {
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
    color: #ccea68;
    font-size: 1.1rem;
}

.schedule-table tr:hover {
    background: rgba(255, 255, 255, 0.1);
}

.schedule-table tr:last-child td {
    border-bottom: none;
}

.time-col {
    width: 120px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.speaker-col {
    width: 200px;
    color: #ccea68;
    font-weight: 500;
}

.cta-container {
    text-align: center;
    margin-top: 60px;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 70px 0 50px;
    text-align: center;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #ccea68;
}

.organization-info {
    margin: 30px auto;
    max-width: 600px;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
}

.organization-info h3 {
    color: #212121;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.social-links {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    color: #ccea68;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.social-links i {
    font-size: 2rem;
}

.social-links span {
    display: none;
}
    gap: 8px;
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

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

.social-links i {
    font-size: 1.2rem;
    color: #ccea68;
}

.social-links span {
    font-size: 1.1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: linear-gradient(45deg, #da873e, #ccea68);
    color: #542f96;
    transform: translateY(-5px);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 30px;
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h1 span {
        font-size: 3rem;
    }

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

    .feature-boxes {
        gap: 15px;
    }

    .feature-box {
        width: calc(50% - 15px);
        padding: 20px 15px;
    }

    .cta-button-large {
        padding: 20px 40px;
        font-size: 1.3rem;
    }

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

    .date-time-highlight {
        padding: 15px;
    }

    .date-time-highlight h2 {
        font-size: 1.5rem;
    }

    .date-time-highlight p {
        font-size: 1rem;
    }
    
    .speakers-grid {
        grid-template-columns: 1fr;
    }
}

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

    .hero h1 span {
        font-size: 2.5rem;
    }

    .feature-box {
        width: 100%;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }

    .time-col {
        width: 80px;
    }

    .speaker-col {
        width: 120px;
    }

    .logo-img {
        max-width: 220px;
    }

    .cta-button-large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .date-time-highlight h2 {
        font-size: 1.3rem;
    }
    
    .date-time-highlight p {
        font-size: 0.9rem;
    }
}

/* Adicionando os novos estilos e modificando os existentes */

/* Estilo para a nova chamada principal */
.main-call {
    background: rgba(204, 234, 104, 0.2);
    border-radius: 15px;
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    border: 2px solid rgba(204, 234, 104, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1.2s ease-out;
}

.main-call h2 {
    font-size: 1.8rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.4;
}

/* Modificação para a seção de informações do evento */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Modificação para os palestrantes em uma linha */
.speakers-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0 30px;
    position: relative;
    z-index: 2;
}

.speaker-card {
    flex: 0 0 calc(25% - 15px);
    min-width: 280px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Estilo para a programação em lista */
.schedule-list {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.schedule-list.active {
    display: block;
}

.schedule-day-title {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    font-size: 1.3rem;
    color: #ccea68;
    font-weight: 600;
    text-align: center;
}

.schedule-item {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.schedule-time {
    width: 120px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    flex-shrink: 0;
}

.schedule-content {
    flex-grow: 1;
}

.schedule-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #ffffff;
}

.schedule-speaker {
    color: #ccea68;
    font-weight: 500;
}

/* Responsividade para os palestrantes em linha */
@media (max-width: 1200px) {
    .speaker-card {
        flex: 0 0 calc(33.33% - 15px);
    }
}

@media (max-width: 992px) {
    .speaker-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .main-call h2 {
        font-size: 1.5rem;
    }
    
    .speaker-card {
        flex: 0 0 calc(100% - 15px);
    }
    
    .schedule-item {
        flex-direction: column;
    }
    
    .schedule-time {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .main-call h2 {
        font-size: 1.2rem;
    }
}
.special-event {
    background: linear-gradient(135deg, rgba(204, 234, 104, 0.1), rgba(218, 135, 62, 0.1));
    border: 2px solid rgba(204, 234, 104, 0.3);
    position: relative;
    overflow: hidden;
}

.celebration {
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.celebration-icon {
    font-size: 2rem;
    color: #ccea68;
    animation: bounce 2s infinite;
}

.social-link {
    color: #da873e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ccea68;
}

/* Confetti Animation */
.confetti-container {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100px;
    overflow: hidden;
    pointer-events: none;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ccea68;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: confettiFall 3s linear infinite;
}

.confetti:nth-child(2) {
    background: #da873e;
    animation-delay: 0.5s;
    left: 20px;
}

.confetti:nth-child(3) {
    background: #ffffff;
    animation-delay: 1s;
    left: 40px;
}

.confetti:nth-child(4) {
    background: #ccea68;
    animation-delay: 1.5s;
    left: 60px;
}

.confetti:nth-child(5) {
    background: #da873e;
    animation-delay: 2s;
    left: 80px;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100%) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(300%) rotate(360deg);
        opacity: 0;
    }
}

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