* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #FF8C00;
    --dark-blue: #1a3a52;
    --light-blue: #2d5f7f;
    --green: #7FBA00;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-dark: #333333;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: 80px;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Banner */
.top-banner {
    background: var(--orange);
    color: white;
    text-align: center;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.top-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.top-banner-text {
    flex: 1;
    text-align: left;
    margin: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgb(26 58 82 / 44%) 0%, rgba(45, 95, 127, 0.95) 100%), url(imgs/fundo.png);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px 0 60px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Hero Left */
.hero-left {
    padding: 40px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.logo {
    max-width: 180px;
    height: auto;
}

.selo {
    max-width: 120px;
    height: auto;
}

.hero-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.badge-orange {
    background: var(--orange);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.hero-title .highlight {
    color: var(--orange);
    display: block;
}

.event-info {
    margin-bottom: 30px;
}

.event-text {
    font-size: 1.15rem;
    font-weight: 700;
    opacity: 1;
    letter-spacing: 0.5px;
    color: white;
}

.event-boxes {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.event-box {
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    border-radius: 0;
    text-align: left;
    border: none;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
}

.event-box:hover {
    transform: translateY(-3px);
}

.event-icon {
    font-size: 3rem;
    color: var(--orange);
    flex-shrink: 0;
}

.event-content {
    display: flex;
    flex-direction: column;
}

.event-day {
    font-size: 3.5rem;
    font-weight: 900;
    display: block;
    line-height: 0.9;
    color: white;
}

.event-month {
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-top: 0;
    color: white;
    opacity: 1;
}

.event-year {
    font-size: 1.1rem;
    opacity: 0.85;
    display: block;
    margin-top: 2px;
    color: white;
    font-weight: 400;
}

.event-time {
    font-size: 3.5rem;
    font-weight: 900;
    display: block;
    line-height: 1;
    color: white;
}

.event-label {
    font-size: 1rem;
    opacity: 0.9;
    display: block;
    margin-top: 5px;
    color: white;
    font-weight: 500;
}

.speaker-box {
    text-align: center;
    padding: 20px 15px;
}

.speaker-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: white;
}

.speaker-title {
    font-size: 0.85rem;
    opacity: 0.8;
    color: white;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-orange {
    background: var(--orange);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.6);
    background: #FF9500;
}

.btn-green {
    background: var(--green);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(127, 186, 0, 0.4);
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(127, 186, 0, 0.6);
    background: #8FCA00;
}

/* Hero Right - Form */
.hero-right {
    position: relative;
    display: flex;
    align-items: stretch;
    padding-top: 40px;
}

.form-container {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    width: 100%;
}

.badge-100 {
    position: absolute;
    top: -75px;
    left: 50%;
    transform: translateX(-50%);



    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 10;
}

.badge-100 img {
    width: 120px;
    object-fit: contain;
}

.circle-icon {
    font-size: 1.5rem;
}

.percentage {
    font-size: 1.3rem;
}

.form-title {
    color: var(--dark-blue);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
    text-align: center;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.registration-form input,
.registration-form select {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    background: white;
}

.registration-form input:focus,
.registration-form select:focus {
    outline: none;
    border-color: var(--orange);
}

.btn-submit {
    background: var(--dark-blue);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
}

.speaker-image {
    position: absolute;
    bottom: -60px;
    right: -50px;
    z-index: 1;
}

.speaker-image img {
    width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Countdown Bar */
.countdown {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.countdown-item {
    text-align: center;
}

.countdown-value {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    color: white;
}

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.9;
    color: white;
}

/* 3 Motivos Section */
.motivos-section {
    background: white;
    padding: 80px 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark-blue);
    text-transform: uppercase;
}

.motivos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.motivos-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.motivo-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid #f0f0f0;
    text-align: center;
    transition: all 0.3s;
}

.motivo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
}

.icon-box.orange {
    background: rgba(255, 140, 0, 0.1);
    border: 3px solid var(--orange);
}

.icon-box.blue {
    background: rgba(29, 58, 82, 0.1);
    border: 3px solid var(--dark-blue);
}

.motivo-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.3;
}

.motivo-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.motivos-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.call-to-action-text {
    text-align: center;
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-dark);
}

.orange-text {
    color: var(--orange);
    font-weight: 700;
}

/* Benefícios Section */
.beneficios-section {
    background: var(--dark-blue);
    color: white;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.beneficios-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title-white {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    text-transform: uppercase;
    line-height: 1.2;
}

.beneficios-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.beneficio-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.beneficio-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: rgba(255, 140, 0, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--orange);
}

.beneficio-content {
    flex: 1;
}

.beneficio-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.beneficio-item .number {
    color: var(--orange);
    font-size: 1.5rem;
}

.beneficio-item p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.7;
}

.beneficios-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.beneficios-right {
    position: relative;
}

.beneficios-image {
    position: relative;
    z-index: 1;
}

.orange-shape {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 400px;
    height: 400px;
    background: var(--orange);
    border-radius: 50% 0 50% 50%;
    z-index: 0;
    opacity: 0.3;
}

.beneficios-image img {
    width: 100%;
    max-width: 650px;
    height: auto;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

/* Video Section */
.video-section {
    background: white;
    padding: 80px 20px;
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.video-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.3;
}

.video-description {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-top: 20px;
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark-blue);
    transition: all 0.3s;
}

.video-placeholder:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-cta {
    margin-top: 30px;
}

/* News Section */
.news-section {
    background: var(--light-gray);
    padding: 80px 20px 200px 20px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--light-blue);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 20px 20px 10px;
    line-height: 1.4;
}

.news-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0 20px 15px;
    line-height: 1.5;
}

.news-link {
    display: inline-block;
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    margin: 0 20px 20px;
    transition: all 0.3s;
}

.news-link:hover {
    color: var(--dark-blue);
}

/* Telegram Section */
.telegram-section {
    background: linear-gradient(135deg, #2d5f7f 0%, #1a3a52 100%);
    padding: 0 20px 0 20px;
    color: white;

}

.telegram-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.telegram-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
}

.btn-telegram {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    color: var(--dark-blue);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-telegram:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.telegram-icon {
    font-size: 1.8rem;
}

.phone-mockup {
    text-align: center;
}

.phone-mockup img {
    max-width: 100%;
    height: auto;
    margin-top: -80px;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.3));
    margin-bottom: -7px;
}

/* Palestrantes Section */
.palestrantes-section {
    background: white;
    padding: 60px 20px;
}

.palestrantes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.palestrante-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.palestrante-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.palestrante-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: var(--light-gray);
}

.palestrante-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.palestrante-info {
    padding: 20px;
    text-align: center;
}

.palestrante-nome {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.palestrante-curriculo {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.6;
    text-align: left;
}

/* Sobre Section */
.sobre-section {
    background: var(--light-gray);
    padding: 80px 20px;
    text-align: center;
}

.section-title-center {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 30px;
}

.sobre-text {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 40px;
    color: var(--text-dark);
}

.sobre-cta {
    margin-top: 40px;
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--orange);
    color: white;
    padding: 50px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    max-width: 150px;
    height: auto;
}

.footer-app {
    max-width:220px;
    height: auto;
}

.footer-center {
    text-align: center;
}

.footer-text {
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: lowercase;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    background: white;
    color: var(--orange);
    transform: translateY(-3px);
}

.footer-right {
    text-align: right;
}

.copyright {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.small {
    font-size: 0.8rem;
    opacity: 0.9;
}

.website {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Responsive */
@media (min-width: 1024px) and (max-width: 1439px) {
    .container {
        max-width: 90%;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .form-title {
        font-size: 1.2rem;
    }

    .section-title,
    .section-title-white,
    .section-title-center {
        font-size: 2rem;
    }

    .hero-grid {
        gap: 40px;
    }

    .registration-form input, .registration-form select{padding: 9px 18px;}

    .event-box {
        padding: 0 20px;
    }
    .event-info {
    margin-bottom: 15px;
}

    .event-day,
    .event-time {
        font-size: 2.2rem;
    }

    .motivo-card,
    .news-card {
        padding: 30px 20px;
    }

    .motivo-card h3 {
        font-size: 1.1rem;
    }

    .motivo-card p {
        font-size: 0.9rem;
    }

    .beneficio-item {
        gap: 15px;
    }

    .beneficio-icon {
        font-size: 2.5rem;
        min-width: 60px;
    }

    .palestrante-card {
        padding: 25px;
    }

    .video-title,
    .telegram-title {
        font-size: 2rem;
    }

    .btn-orange,
    .btn-green {
        padding: 16px 35px;
        font-size: 0.75rem;
    }

    .beneficio-item h4{font-size: 1.2rem;}
    .beneficio-item p{font-size: 0.85rem;}
    .phone-mockup img{max-width: 65%;}
}

@media (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .speaker-image {
        position: static;
        text-align: center;
        margin-top: 20px;
    }

    .beneficios-content,
    .video-content,
    .telegram-content {
        grid-template-columns: 1fr;
    }

    .motivos-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .palestrantes-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 140px;
    }


    .telegram-section{padding: 58px 20px 0 20px;}

    .top-banner-content {
        flex-direction: column;
        gap: 15px;
    }

    .top-banner-text {
        text-align: center;
        font-size: 0.8rem;
    }

    .countdown {
        gap: 15px;
        justify-content: center;
    }

    .countdown-value {
        font-size: 1.2rem;
    }

    .countdown-label {
        font-size: 0.65rem;
    }

    .phone-mockup img{margin-top: 0;}

    /* Hero Section - Centralizado */
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
        text-align: center;
    }

    .event-info {
        text-align: center;
    }

    .event-boxes {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        width: 100%;
    }

    .event-box {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
        width: 100%;
    }

    .btn-orange,
    .btn-green {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    /* Form - Centralizado */
    .hero-right {
        display: flex;
        justify-content: center;
    }

    .form-container {
        width: 100%;
        max-width: 400px;
    }

    /* Motivos Section - Centralizado */
    .motivos-section {
        text-align: center;
    }

    .motivos-grid,
    .motivos-grid-4 {
        grid-template-columns: 1fr;
    }

    .motivos-cta {
        flex-direction: column;
        align-items: center;
    }

    .motivos-cta .btn-orange,
    .motivos-cta .btn-green {
        width: 100%;
        max-width: 300px;
    }

    .call-to-action-text {
        text-align: center;
    }

    /* Benefícios Section - Centralizado */
    .beneficios-content {
        grid-template-columns: 1fr;
    }

    .beneficios-left {
        text-align: center;
    }

    .beneficios-list {
        align-items: center;
    }

    .beneficio-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .beneficio-icon {
        margin-bottom: 10px;
    }

    .beneficios-cta {
        flex-direction: column;
        align-items: center;
    }

    .beneficios-cta .btn-orange,
    .beneficios-cta .btn-green {
        width: 100%;
        max-width: 300px;
    }

    .beneficios-right {
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }

    /* Video Section - Centralizado */
    .video-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .video-text {
        text-align: center;
    }

    .video-cta {
        display: flex;
        justify-content: center;
    }

    .video-cta .btn-orange {
        width: 100%;
        max-width: 300px;
    }

    /* Palestrantes - Centralizado */
    .palestrantes-grid {
        grid-template-columns: 1fr;
    }

    .palestrante-card {
        text-align: center;
    }

    .palestrante-info {
        text-align: center;
    }

    /* Sobre Section - Centralizado */
    .sobre-section {
        text-align: center;
    }

    .sobre-cta {
        display: flex;
        justify-content: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }

    /* News Section - Centralizado */
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card {
        text-align: center;
    }

    /* Telegram Section - Centralizado */
    .telegram-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .telegram-left {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .telegram-title {
        text-align: center;
    }

    .btn-telegram {
        width: 100%;
        max-width: 300px;
    }

    .telegram-right {
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }

    /* Footer - Centralizado */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-right {
        text-align: center;
    }

    .footer-left {
        justify-content: center;
    }

    .footer-center {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Títulos */
    .section-title,
    .section-title-white,
    .section-title-center,
    .video-title,
    .telegram-title {
        font-size: 1.8rem;
        text-align: center;
    }
}

