* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #e8e8e8 0%, #2c5530 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 180px !important;
    height: 60px !important;
    max-width: 180px !important;
    max-height: 60px !important;
    object-fit: contain !important;
    border-radius: 4px;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #c8c8c8;
}

/* Menu Hambúrguer */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Animação do menu hambúrguer quando ativo */
.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsividade do Header */
@media (max-width: 768px) {
    .header .container {
        justify-content: space-between;
        align-items: center;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, #e8e8e8 0%, #2c5530 100%);
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: -1;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
    }
    
    .nav ul li {
        width: 100%;
    }
    
    .nav ul li a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        transition: background-color 0.3s;
    }
    
    .nav ul li a:hover {
        background-color: rgba(255,255,255,0.1);
    }
    
    .logo-img {
        width: 140px !important;
        height: 47px !important;
        max-width: 140px !important;
        max-height: 47px !important;
    }
}

@media (max-width: 480px) {
    .nav {
        width: 100%;
        right: -100%;
    }
    
    .logo-img {
        width: 120px !important;
        height: 40px !important;
        max-width: 120px !important;
        max-height: 40px !important;
    }
}

/* Hero Section */
.hero {
    background: 
        url('assets/img/banner-backup.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Overlay para melhor legibilidade do texto em mobile */
@media (max-width: 768px) {
    .hero::before {
        background: rgba(0, 0, 0, 0.3); /* Adiciona overlay escuro em mobile */
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: bottom;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.info-item i {
    font-size: 1.2rem;
}

.cta-button {
    background: #4a7c59;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
}

.cta-button:hover {
    background: #2c5530;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 85, 48, 0.4);
}

/* Evento Section */
.evento {
    padding: 5rem 0;
    background: #f8f9fa;
}

.evento h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.evento-content {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.evento-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.evento-text {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Local do Evento */
.local-evento {
    background: linear-gradient(135deg, #4a7c59 0%, #2c5530 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    text-align: center;
}

.local-evento h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.local-evento .endereco {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
    color: white;
}

.local-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.local-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.local-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.calendario-section {
    background: white;
    padding: 1.8rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.calendario-section h3 {
    margin-bottom: 1.2rem;
    color: #333;
    text-align: center;
}

/* Programação do Evento */
.programacao-evento {
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #4a7c59;
}

.programacao-evento h4 {
    color: #333;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    text-align: center;
}

.programacao-intro {
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    text-align: center;
    font-size: 0.9rem;
}

.horarios-lista {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.horario-item {
    display: flex;
    align-items: center;
    padding: 0.6rem 0.8rem;
    background: white;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.horario-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.horario-item .hora {
    font-weight: 600;
    color: #4a7c59;
    min-width: 50px;
    font-size: 0.9rem;
}

.horario-item .atividade {
    color: #333;
    margin-left: 0.8rem;
    flex: 1;
    font-size: 0.9rem;
}

/* Destaque para palestras */
.horario-item.destaque {
    background: linear-gradient(135deg, #4a7c59 0%, #2c5530 100%);
    color: white;
}

.horario-item.destaque .hora,
.horario-item.destaque .atividade {
    color: white;
}

/* Destaque para almoço */
.horario-item.almoco {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.horario-item.almoco .hora,
.horario-item.almoco .atividade {
    color: white;
}

/* Destaque para networking */
.horario-item.networking {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
}

.horario-item.networking .hora,
.horario-item.networking .atividade {
    color: white;
}

.calendar-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.calendar-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.calendar-btn.google {
    background: #6b8e6b;
    color: white;
}

.calendar-btn.outlook {
    background: #4a7c59;
    color: white;
}

.calendar-btn.ics {
    background: #2c5530;
    color: white;
}

.calendar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Palestrantes Section */
.palestrantes {
    padding: 5rem 0;
    background: white;
}

.palestrantes h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.palestrantes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.palestrante-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.palestrante-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.palestrante-foto {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.foto-palestrante {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.palestrante-card:hover .foto-palestrante {
    transform: scale(1.05);
}

.overlay-especialidade {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4a7c59 0%, #2c5530 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.palestrante-card:hover .overlay-especialidade {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.palestrante-info {
    padding: 1.5rem;
    text-align: center;
}

.palestrante-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.especialidade {
    color: #4a7c59;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.descricao {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.palestrante-social {
    display: none;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a7c59;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: #4a7c59;
    color: white;
    transform: translateY(-2px);
}

/* Cores específicas para cada rede social */
.social-link:nth-child(1):hover {
    background: #0077b5; /* LinkedIn */
}

.social-link:nth-child(2):hover {
    background: #e4405f; /* Instagram */
}

.social-link:nth-child(3):hover {
    background: #1da1f2; /* Twitter */
}

/* Animação para os cards dos palestrantes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.palestrante-card {
    animation: fadeInUp 0.6s ease-out;
}

.palestrante-card:nth-child(1) { animation-delay: 0.1s; }
.palestrante-card:nth-child(2) { animation-delay: 0.2s; }
.palestrante-card:nth-child(3) { animation-delay: 0.3s; }
.palestrante-card:nth-child(4) { animation-delay: 0.4s; }
.palestrante-card:nth-child(5) { animation-delay: 0.5s; }

/* Responsividade para palestrantes */
@media (max-width: 768px) {
    .palestrantes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .palestrante-foto {
        height: 250px;
    }
    
    .palestrante-info {
        padding: 1rem;
    }
}

/* Efeito de hover mais suave para mobile */
@media (max-width: 768px) {
    .palestrante-card:hover {
        transform: none;
    }
    
    .palestrante-card:hover .foto-palestrante {
        transform: none;
    }
}

/* Inscrições Section */
.inscricoes {
    padding: 5rem 0;
    background: #f8f9fa;
}

.inscricoes h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.planos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.plano {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s;
}

.plano:hover {
    transform: translateY(-5px);
}

.plano.premium {
    border: 3px solid #ff6b6b;
}

.badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff6b6b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plano h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.preco {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.moeda {
    font-size: 1.5rem;
    color: #666;
}

.valor {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
}

.beneficios {
    list-style: none;
    margin-bottom: 2rem;
}

.beneficios li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.beneficios i {
    color: #28a745;
    font-size: 1.2rem;
}

.plano-btn {
    background: #6b8e6b;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.plano-btn:hover {
    background: #4a7c59;
    transform: translateY(-2px);
}

.premium-btn {
    background: #2c5530;
}

.premium-btn:hover {
    background: #1e3b22;
}

/* Contato Section */
.contato {
    padding: 5rem 0;
    background: white;
}

.contato h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contato-info h3 {
    margin-bottom: 1rem;
    color: #333;
}

.contato-info p {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.info-contato {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-contato .info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #666;
}

.info-contato i {
    color: #4a7c59;
    font-size: 1.2rem;
}

.contato-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c59;
}

.submit-btn {
    background: #4a7c59;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #2c5530;
    transform: translateY(-2px);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    padding: 20px 0;
}

.modal-content {
    background-color: white;
    margin: 20px auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: #333;
}

.plano-selecionado {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.plano-selecionado h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.plano-selecionado p {
    color: #4a7c59;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #4a7c59;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-info {
        flex-direction: column;
        align-items: center;
    }

    .evento-content {
        grid-template-columns: 1fr;
    }
    
    .evento-text {
        min-height: auto;
    }
    
    /* Responsividade da programação */
    .programacao-evento {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .horario-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 0.6rem 0.8rem;
    }
    
    .horario-item .hora {
        min-width: auto;
        margin-bottom: 0.3rem;
        font-size: 0.9rem;
    }
    
    .horario-item .atividade {
        margin-left: 0;
        font-size: 0.9rem;
    }
    
    .local-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .local-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .contato-content {
        grid-template-columns: 1fr;
    }

    .nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .header .container {
        justify-content: space-between;
        align-items: center;
    }

    .planos {
        grid-template-columns: 1fr;
    }

    .palestrantes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .palestrante-foto {
        height: 250px;
    }
    
    .palestrante-info {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
    }

    .modal {
        padding: 10px 0;
    }
    
    .modal-content {
        margin: 10px auto;
        width: 95%;
        padding: 1.5rem;
        max-height: calc(100vh - 20px);
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #4a7c59;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Estilos para o sistema de pagamento */
.etapa-inscricao {
    width: 100%;
}

.pagamento-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pagamento-header h3 {
    color: #333;
    margin-bottom: 1rem;
}

.resumo-pedido {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.resumo-pedido p {
    font-weight: 600;
    color: #4a7c59;
    font-size: 1.1rem;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #4a7c59;
    background: #f8f9ff;
}

.payment-option.selected {
    border-color: #4a7c59;
    background: #f8f9ff;
}

/* Estilo específico para pagamento no local */
.payment-option.payment-local {
    border-color: #ffc107;
    background: #fffdf0;
}

.payment-option.payment-local .payment-icon {
    color: #ffc107;
}

.payment-option.payment-local:hover {
    border-color: #e0a800;
    background: #fff8e1;
}

.payment-option.payment-local.selected {
    border-color: #e0a800;
    background: #fff8e1;
}

.payment-icon {
    font-size: 2rem;
    color: #4a7c59;
    margin-right: 1rem;
    width: 60px;
    text-align: center;
}

.payment-info {
    flex: 1;
}

.payment-info h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.payment-info p {
    color: #666;
    font-size: 0.9rem;
}

.payment-radio {
    margin-left: auto;
}

.payment-radio input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.payment-buttons {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.btn-voltar {
    background: #6c757d;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.btn-voltar:hover {
    background: #5a6268;
}

.confirmacao-pagamento {
    text-align: center;
    padding: 2rem 0;
}

.loading-payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4a7c59;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.success-payment, .error-payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
}

.error-icon {
    font-size: 4rem;
    color: #dc3545;
}

.success-payment h3 {
    color: #28a745;
    margin-bottom: 1rem;
}

.error-payment h3 {
    color: #dc3545;
    margin-bottom: 1rem;
}

.success-payment p, .error-payment p {
    color: #666;
    max-width: 400px;
    margin-bottom: 1.5rem;
}

/* Responsividade para pagamento */
@media (max-width: 768px) {
    .payment-methods {
        gap: 0.5rem;
    }
    
    .payment-option {
        padding: 0.75rem;
    }
    
    .payment-icon {
        font-size: 1.5rem;
        width: 50px;
        margin-right: 0.75rem;
    }
    
    .payment-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-voltar, .payment-buttons .submit-btn {
        width: 100%;
    }
}

/* Responsividade específica para modal em telas pequenas */
@media (max-width: 480px) {
    .modal {
        padding: 5px 0;
    }
    
    .modal-content {
        margin: 5px auto;
        width: 98%;
        padding: 1rem;
        max-height: calc(100vh - 10px);
        border-radius: 10px;
    }
    
    .close {
        right: 15px;
        top: 15px;
        font-size: 24px;
    }
    
    .plano-selecionado {
        margin-bottom: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .payment-methods {
        gap: 0.5rem;
    }
    
    .payment-option {
        padding: 0.75rem 0.5rem;
    }
    
    .payment-icon {
        font-size: 1.2rem;
        width: 40px;
        margin-right: 0.5rem;
    }
    
    .payment-info h4 {
        font-size: 0.9rem;
    }
    
    .payment-info p {
        font-size: 0.8rem;
    }
}

/* Melhorias adicionais para scroll suave */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #4a7c59;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #5a6fd8;
}

/* Ajustes para dispositivos móveis - imagem de fundo do hero */

/* iPads e tablets grandes (Portrait) */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero {
        background: 
            url('assets/img/banner-mobile.jpg');
        background-attachment: scroll !important;
        background-position: center center;
        background-size: contain; /* Mostra imagem completa */
        background-color: #2c5530; /* Cor de fundo para preencher espaços */
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 3rem 2rem;
        max-width: 100%;
    }
}

/* Tablets em modo paisagem */
@media (max-width: 1024px) and (orientation: landscape) {
    .hero {
        background: 
            url('assets/img/banner-mobile.jpg');
        background-position: center center;
        background-size: cover;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 1.5rem 2rem;
    }
}

/* Tablets menores */
@media (max-width: 768px) {
    .hero {
        background: 
            url('assets/img/banner-mobile.jpg');
        background-attachment: scroll !important;
        background-position: center center;
        background-size: cover;
        min-height: 90vh;
    }
    
    .hero-content {
        padding: 2rem 1rem;
        max-width: 100%;
    }
}

/* Ajustes específicos para telas pequenas (mobile) */
@media (max-width: 480px) {
    .hero {
        background: 
            url('assets/img/banner-mobile.jpg');
        background-position: center 40%; /* Ajustar posição vertical para mobile */
        background-size: cover;
        min-height: 85vh;
    }
    
    .hero-content {
        padding: 1.5rem 0.5rem;
    }
}

/* Ajustes para dispositivos muito pequenos */
@media (max-width: 375px) {
    .hero {
        background: 
            url('assets/img/banner-mobile.jpg');
        background-position: center 35%;
        background-size: cover;
        min-height: 80vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .info-item {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}


