/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 100%);
    padding: 60px 0;
    text-align: center;
    border-bottom: 3px solid #5f4d41;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.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="%235f4d41" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

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

.hero-title {
    color: #cd9f6b;
    font-size: 2.5em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px #000;
}

.hero-subtitle {
    color: #7fbf7f;
    font-size: 1.5em;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px #000;
}

.hero-description {
    color: #d4c0a1;
    font-size: 1.1em;
    margin-top: 15px;
}

/* Canais Section */
.canais-section {
    margin: 50px 0;
}

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

.canal-card {
    background: linear-gradient(135deg, #2b2b2b 0%, #3b3b3b 100%);
    border: 2px solid #5f4d41;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.canal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(205, 159, 107, 0.1), transparent);
    transition: left 0.5s ease;
}

.canal-card:hover::before {
    left: 100%;
}

.canal-card:hover {
    transform: translateY(-5px);
    border-color: #cd9f6b;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.canal-icon {
    font-size: 3em;
    margin-bottom: 20px;
    display: block;
}

.canal-card h3 {
    color: #cd9f6b;
    font-size: 1.4em;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px #000;
}

.canal-card p {
    color: #d4c0a1;
    margin-bottom: 20px;
    font-size: 0.9em;
}

.canal-info {
    margin-bottom: 20px;
}

.canal-detail {
    display: block;
    color: #7fbf7f;
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.canal-status {
    display: block;
    color: #d4c0a1;
    font-size: 0.9em;
    opacity: 0.8;
}

.btn-canal {
    background: linear-gradient(135deg, #cd9f6b, #e6b583);
    color: #1a1a1a;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1em;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(205, 159, 107, 0.3);
}

.btn-canal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(205, 159, 107, 0.4);
}

/* Formulário Section */
.formulario-section {
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 100%);
    border: 2px solid #5f4d41;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.section-description {
    text-align: center;
    color: #d4c0a1;
    font-size: 1.1em;
    margin-bottom: 30px;
}

.contato-form {
    max-width: 800px;
    margin: 0 auto;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: #cd9f6b;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 1em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: #1a1a1a;
    border: 2px solid #5f4d41;
    color: #d4c0a1;
    padding: 12px;
    border-radius: 8px;
    font-size: 1em;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #cd9f6b;
    box-shadow: 0 0 10px rgba(205, 159, 107, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox Customizado */
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #d4c0a1;
    font-size: 0.9em;
    margin-top: 10px;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background-color: #1a1a1a;
    border: 2px solid #5f4d41;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #cd9f6b;
    border-color: #cd9f6b;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1a1a1a;
    font-weight: bold;
    font-size: 12px;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Info Section */
.info-section {
    margin: 60px 0;
}

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

.info-card {
    background: linear-gradient(135deg, #2b2b2b 0%, #3b3b3b 100%);
    border: 2px solid #5f4d41;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #cd9f6b;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.info-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}

.info-card h3 {
    color: #cd9f6b;
    font-size: 1.3em;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 1px 1px 2px #000;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    color: #d4c0a1;
    padding: 8px 0;
    border-bottom: 1px solid rgba(95, 77, 65, 0.3);
    line-height: 1.4;
}

.info-card li:last-child {
    border-bottom: none;
}

.info-card li strong {
    color: #7fbf7f;
}

.info-card a {
    color: #cd9f6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: #e6b583;
}

/* FAQ Section */
.faq-section {
    margin: 60px 0;
}

.faq-item {
    background: linear-gradient(135deg, #2b2b2b 0%, #3b3b3b 100%);
    border: 2px solid #5f4d41;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #cd9f6b;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #cd9f6b;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(205, 159, 107, 0.1);
}

.faq-icon {
    margin-right: 15px;
    transition: transform 0.3s ease;
    color: #7fbf7f;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(95, 77, 65, 0.1);
}

.faq-answer p {
    color: #d4c0a1;
    padding: 20px;
    margin: 0;
    line-height: 1.6;
}

.faq-answer ul {
    padding: 0 20px 20px 40px;
    color: #d4c0a1;
}

.faq-answer li {
    margin-bottom: 8px;
    line-height: 1.4;
}

.faq-answer strong {
    color: #cd9f6b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2em;
    }
    
    .hero-subtitle {
        font-size: 1.3em;
    }
    
    .canais-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .formulario-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8em;
    }
    
    .hero-subtitle {
        font-size: 1.2em;
    }
    
    .canal-card {
        padding: 20px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
    }
} 