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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

        a{
            text-decoration: none !important;
            color: gainsboro !important;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        header {
            background-color: #2c3e50;
            color: white;
            padding: 20px 0;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        
       /* Adicione ao seu arquivo CSS existente */
        [lang="en"] .ticket-card,
        [lang="en"] .selection-form,
        [lang="en"] .ticket-summary {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        [lang="en"] .ticket-card h3 {
            font-size: 1.1rem;
        }

        [lang="en"] .description ul {
            padding-left: 20px;
        }
        /* Image switching for language */
.conference-imageing {
    display: none;
    width: 100%;
}

[lang="en"] .conference-image {
    display: none;
}

[lang="en"] .conference-imageing {
    display: block;
}
   .ticket-summary {
    background-color: #34495e;
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
    display: none;
}

.ticket-summary.visible {
    display: block;
}

/* Apenas para mobile (fixo no scroll) */
@media (max-width: 768px) {
    .ticket-summary.fixed {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1000;
        border-radius: 0;
        margin-top: 0;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    body.has-fixed-summary {
        padding-top: 70px; /* Ajuste conforme a altura do seu elemento */
    }
}
        
        .summary-items {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 10px;
        }
        
        .summary-item {
            background-color: #ecf0f1;
            color: #2c3e50;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .summary-item .quantity {
            background-color: #2c3e50;
            color: white;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }
        
        .summary-total {
            font-size: 1.2rem;
            font-weight: bold;
            margin-top: 10px;
            color: white;
        }
        .cabecalho{ 
            width: 200px;
            height: 160px;
        }
        .center{ 
            color: white;
            display: flex; 
            justify-content: center; 
        }
        .pay-button {
            background-color: #27ae60;
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            margin-top: 15px;
            transition: background-color 0.3s; 
        } 
        .pay-button:hover {
            background-color: #2ecc71;
        }
        
        .pay-button:disabled {
            background-color: #95a5a6;
            cursor: not-allowed;
        }
        
        .tickets-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            overflow-y: auto;
        }
        
        .modal-content {
            background-color: white;
            border-radius: 8px;
            margin: 50px auto;
            max-width: 600px;
            width: 90%;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            animation: modalFadeIn 0.3s;
        }

        .modal-doar {
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.7);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content-doar  {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            animation: fadeIn 0.3s;
        }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }
        
        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .modal-header {
            padding: 20px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .modal-header h2 {
            color: #2c3e50;
        }
        
        .close-button {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #7f8c8d;
        }
        
        .modal-body {
            padding: 20px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #2c3e50;
        }
        
        .form-group input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }
        
        .submit-button {
            background-color: #27ae60;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            width: 100%;
            transition: background-color 0.3s;
            margin-top: 10px;
        }
        
        .submit-button:hover {
            background-color: #2ecc71;
        }
        
        .selected-tickets-summary {
            margin-bottom: 25px;
            padding: 15px;
            background-color: #f8f9fa;
            border-radius: 5px;
        }
        
        .remove-item {
            color: #e74c3c;
            cursor: pointer;
            margin-left: 8px;
            font-size: 0.9rem;
        }
        
        .loading {
            display: none;
            text-align: center;
            margin-top: 15px;
        }
        
        .loading-spinner {
            border: 4px solid #f3f3f3;
            border-top: 4px solid #3498db;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            animation: spin 1s linear infinite;
            margin: 0 auto;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            
            .tickets-container {
                grid-template-columns: 1fr;
            }
            
            .ticket-card {
                padding: 20px;
            }
            
            .modal-content {
                margin: 20px auto;
                width: 95%;
            }
            
            .modal-header {
                padding: 15px;
            }
            
            .modal-body {
                padding: 15px;
            }
        }
        
        @media (max-width: 480px) {
            h1 {
                font-size: 1.8rem;
            }
            
            .summary-items {
                flex-direction: column;
                align-items: center;
            }
            
            .summary-item {
                width: 100%;
                justify-content: center;
            }
            
            .ticket-card h3 {
                font-size: 1.3rem;
            }
            
            .ticket-card .price {
                font-size: 1.5rem;
            }
        }
/*language*/
.language-selector button {
  background: #2c3e50;
  color: white;
  border: none;
  border-radius: 4px;
  transition: all 0.3s;
}

.language-selector button:hover {
  background: #3498db;
  transform: scale(1.05);
}


/*ladoa lado*/
/* Layout de Duas Colunas */
.two-column-layout {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.left-column {
    flex: 1;
    position: relative;
}

.right-column {
    flex: 2;
}

/* Estilo para a Foto Fixa */
.fixed-image {
    position: sticky;
    top: 20px;
    height: calc(100vh - 40px);
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(23, 197, 14, 0.641));
    color: white;
    padding: 30px;
    text-align: center;
}

.image-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.image-overlay p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Container dos Ingressos */
.tickets-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Cards de Ingresso */
.ticket-card {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

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

.ticket-card.has-items {
    border: 2px solid #27ae60;
    background-color: #f8f9fa;
}

.ticket-card h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.ticket-card .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #27ae60;
    margin: 15px 0;
}

.ticket-card .description {
    color: #7f8c8d;
    margin-bottom: 20px;
}

.ticket-card .select-button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.ticket-card .select-button:hover {
    background-color: #2980b9;
}

.ticket-card .items-count {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #27ae60;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    display: none;
}

.ticket-card.has-items .items-count {
    display: flex;
}

/* Ajustes Responsivos */
@media (max-width: 1024px) {
    .two-column-layout {
        flex-direction: column;
    }
    
    .fixed-image {
        position: relative;
        height: 555px;
        margin-bottom: 30px;
    }
    
    .right-column {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .tickets-container {
        grid-template-columns: 1fr;
    }
    
    .ticket-card {
        padding: 20px;
    }
    
    .ticket-card h3 {
        font-size: 1.3rem;
    }
    
    .ticket-card .price {
        font-size: 1.5rem;
    }
}


/* Botão Flutuante WhatsApp */
.whatsapp-share-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-share-button a {
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-share-button a:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-share-button img {
    width: 24px;
    height: 24px;
    margin-left: 8px;
}

.whatsapp-share-button span {
    font-weight: bold;
    font-size: 14px;
}

/* Esconder o texto em telas pequenas */
@media (max-width: 480px) {
    .whatsapp-share-button span {
        display: none;
    }
    
    .whatsapp-share-button a {
        padding: 12px;
    }
    
    .whatsapp-share-button img {
        margin-right: 0;
    }
}


.payment-footer {
    background-color: #2c3e50;
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 3px solid #25D366;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.payment-methods {
    width: 50%;
}

.payment-methods h3, .bank-info h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #ecf0f1;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.payment-icons img {
    width: 64px;
    height: 40px;
    object-fit: contain;
    filter: grayscale(100%) brightness(150%);
    transition: all 0.3s ease;
}

.payment-icons img:hover {
    filter: none;
    transform: scale(1.1);
}

.bank-info {
    width: 45%;
    text-align: right;
}

.bank-info p {
    margin: 8px 0;
    color: #bdc3c7;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ecf0f1;
}

.copyright {
    font-size: 0.9rem;
    color: #7f8c8d;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .payment-methods, .bank-info {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .payment-icons {
        justify-content: center;
        gap: 10px;
    }
    
    .payment-icons img {
        width: 56px;
        height: 35px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* Estilos anteriores... */

.bank-contact-info {
    width: 45%;
}

.contact-info {
    margin-top: 20px;
}

.contact-info p {
    margin: 10px 0;
    color: #bdc3c7;
    font-size: 0.95rem;
}

.contact-info i {
    margin-right: 10px;
    color: #ecf0f1;
    width: 20px;
    text-align: center;
}

/* Adapte a responsividade */
@media (max-width: 768px) {
    .bank-contact-info {
        width: 100%;
    }
}

.donation-info {
    margin: 40px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.donation-info h2 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.donation-info p {
    color: #34495e;
    margin-bottom: 20px;
}

.donation-info ul {
    list-style-type: none;
    padding: 0;
    margin: 0 auto;
    max-width: 400px;
}

.donation-info li {
    margin-bottom: 10px;
    font-size: 16px;
}

.donation-info li strong {
    color: #2c3e50;
}
 .selection-form {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.selection-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.checkbox-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 5px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.checkbox-option input[type="checkbox"],
.checkbox-option input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #3498db;
    border-radius: 3px;
    margin: 0;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.checkbox-option input[type="checkbox"]:checked,
.checkbox-option input[type="radio"]:checked {
    background-color: #3498db;
}

.checkbox-option input[type="checkbox"]:checked::after,
.checkbox-option input[type="radio"]:checked::after {
    content: "✓";
    position: absolute;
    color: white;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-option input[type="radio"] {
    border-radius: 50%;
}

.checkbox-option label {
    margin: 0;
    font-weight: normal;
    white-space: normal;
    display: inline;
    color: #34495e;
    cursor: pointer;
}

@media (max-width: 768px) {
    .checkbox-options {
        flex-direction: column;
        gap: 10px;
    }
    
    .checkbox-option {
        align-items: flex-start;
    }
    
    .checkbox-option label {
        white-space: normal;
    }
}