/* ===== CSS COMPLETO PARA PÁGINA CONTATO ===== */

/* ===== 1. RESET E CONFIGURAÇÕES BÁSICAS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* ===== 2. VARIÁVEIS CSS ===== */
:root {
    --primary-color: #2d8f47;
    --secondary-color: #1e5f32;
    --text-color: #333;
    --text-light: #666;
    --text-lighter: #444;
    --bg-light: #f8f9fa;
    --bg-gradient: linear-gradient(135deg, #f0f8f2 0%, #e8f5ea 50%, #f0f8f2 100%);
    --white: #ffffff;
    --shadow-light: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-medium: 0 8px 25px rgba(45, 143, 71, 0.12);
    --shadow-heavy: 0 15px 40px rgba(45, 143, 71, 0.15);
    --border-radius: 15px;
    --border-radius-large: 25px;
    --transition: all 0.3s ease;
}

/* ===== 3. COMPONENTES BÁSICOS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== 4. HEADER ===== */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-light);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.site-header .logo-img {
    height: 80px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}



/* ===== 5. NAVEGAÇÃO ===== */
.main-nav .nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav .nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: var(--primary-color);
}

.main-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
    width: 100%;
}

.main-nav .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.main-nav .hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* ===== 6. PÁGINA DE CONTATO ===== */
.contact-page {
    padding: 120px 0 80px;
    background: var(--bg-gradient);
    position: relative;
    min-height: 100vh;
}

.contact-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(45, 143, 71, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(45, 143, 71, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(45, 143, 71, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-page .contact-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ===== 7. TÍTULO DA PÁGINA ===== */
.page-title {
    font-size: 3.2rem;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
    
    /* Card styling */
    background: linear-gradient(135deg, #ffffff 0%, #f8fdf9 50%, #ffffff 100%);
    padding: 4rem 3rem;
    border-radius: var(--border-radius-large);
    box-shadow: 
        0 20px 60px rgba(45, 143, 71, 0.15),
        0 8px 25px rgba(45, 143, 71, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(45, 143, 71, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    transform: translateY(0);
    overflow: hidden;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.page-title:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 25px 70px rgba(45, 143, 71, 0.2),
        0 12px 35px rgba(45, 143, 71, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.page-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    border-radius: var(--border-radius-large) var(--border-radius-large) 0 0;
    z-index: 1;
}

/* ===== 8. SEÇÃO DE INFORMAÇÕES COMBINADAS ===== */
.combined-info-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fdf9 100%);
    padding: 6rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-heavy);
    margin-bottom: 2rem;
    border: 1px solid rgba(45, 143, 71, 0.1);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.combined-info-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(45, 143, 71, 0.2);
}

.combined-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
}

.combined-info-header {
    text-align: center;
    margin-bottom: 4rem;
}

.combined-info-header h2 {
    color: var(--primary-color);
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.combined-info-header p {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: var(--text-lighter);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    margin-top: 3rem;
}

.schedule-item {
    background: linear-gradient(135deg, rgba(45, 143, 71, 0.05), rgba(45, 143, 71, 0.02));
    padding: 3rem;
    border-radius: 20px;
    border-left: 6px solid var(--primary-color);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(45, 143, 71, 0.1);
}

.schedule-item:hover {
    background: linear-gradient(135deg, rgba(45, 143, 71, 0.1), rgba(45, 143, 71, 0.05));
    transform: translateX(15px) translateY(-5px);
    box-shadow: 0 15px 35px rgba(45, 143, 71, 0.2);
}

.schedule-item-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.schedule-item-header i {
    font-size: 3rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(45, 143, 71, 0.15), rgba(45, 143, 71, 0.08));
    padding: 1.5rem;
    border-radius: 20px;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(45, 143, 71, 0.2);
}

.schedule-item-header h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.schedule-details p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: var(--text-lighter);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.schedule-details p:last-child {
    margin-bottom: 0;
}

.schedule-details i {
    color: var(--primary-color);
    width: 24px;
    text-align: center;
    font-size: 1.2rem;
}

.phone-highlight {
    display: inline-block;
    background: #39b666;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, background 0.2s ease;
}

.phone-highlight:hover {
    background: #1ebe5d;
    transform: scale(1.03);
}

.phone-highlight i {
    margin-right: 8px;
    font-size: 1.4rem;
    color: black;
}

/* ===== 9. SEÇÃO DE LOCALIZAÇÃO ===== */
.location-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fdf9 100%);
    padding: 6rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-heavy);
    margin-bottom: 2rem;
    border: 1px solid rgba(45, 143, 71, 0.1);
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
}

.location-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(45, 143, 71, 0.2);
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.location-section h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.location-address {
    font-size: 1.4rem;
    color: var(--text-lighter);
    margin-bottom: 3rem;
    font-weight: 600;
}

.map-container {
    margin-top: 2rem;
}

.map-placeholder {
    background: linear-gradient(135deg, rgba(45, 143, 71, 0.12), rgba(45, 143, 71, 0.08));
    padding: 5rem 3rem;
    border-radius: 20px;
    border: 3px dashed rgba(45, 143, 71, 0.4);
    text-align: center;
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(45, 143, 71, 0.1);
}

.map-placeholder:hover {
    background: linear-gradient(135deg, rgba(45, 143, 71, 0.2), rgba(45, 143, 71, 0.15));
    border-color: rgba(45, 143, 71, 0.7);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(45, 143, 71, 0.25);
}

.map-placeholder i {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.map-placeholder:hover i {
    transform: scale(1.15);
}

.map-placeholder p {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.map-note {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 1.2rem;
}

.map-click {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 2rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.map-placeholder:hover .map-click {
    opacity: 1;
}

/* ===== 10. FORMULÁRIO DE CONTATO ===== */
.contact-form-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

.form-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8fdf9 100%);
    padding: 6rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-heavy);
    border: 1px solid rgba(45, 143, 71, 0.1);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.form-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(45, 143, 71, 0.2);
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.form-row {
    display: flex;
    gap: 2rem;
}

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

.form-group label {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.form-group input,
.form-group textarea {
    padding: 1.2rem;
    border: 3px solid rgba(45, 143, 71, 0.2);
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    transition: var(--transition);
    background: var(--white);
    box-shadow: 0 2px 8px rgba(45, 143, 71, 0.1);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(45, 143, 71, 0.15);
    transform: translateY(-2px);
}

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

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-submit .btn {
    padding: 1.5rem 4rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: var(--transition);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    box-shadow: 0 8px 25px rgba(45, 143, 71, 0.3);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.form-submit .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(45, 143, 71, 0.4);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

/* ===== 11. FOOTER ===== */
.site-footer {
    background: #333;
    color: white;
    padding: 40px 0 20px;
}

.site-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.site-footer .footer-section h3,
.site-footer .footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.site-footer .footer-section p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-footer .footer-section i {
    color: var(--primary-color);
    width: 16px;
}

.site-footer .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* ===== 12. RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .main-nav .hamburger {
        display: flex;
    }
    
    .main-nav .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-light);
        padding: 2rem 0;
    }
    
    .main-nav .nav-menu.active {
        left: 0;
    }
    
    .site-header .logo-img {
        height: 65px;
        max-width: 180px;
    }
    
    .contact-page {
        padding: 100px 0 60px;
    }
    
    .page-title {
        font-size: 2.5rem;
        padding: 3rem 2rem;
        border-radius: 20px;
        max-width: 95%;
    }
    
    .combined-info-section,
    .location-section,
    .form-container {
        padding: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .combined-info-header h2 {
        font-size: 2.2rem;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .schedule-item {
        padding: 2.5rem;
    }
    
    .schedule-item-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .site-header .logo-img {
        height: 55px;
        max-width: 140px;
    }
    
    .contact-page {
        padding: 90px 0 50px;
    }
    
    .page-title {
        font-size: 2rem;
        padding: 2.5rem 1.5rem;
        border-radius: var(--border-radius);
    }
    
    .combined-info-section,
    .location-section,
    .form-container {
        padding: 1.5rem;
        border-radius: var(--border-radius);
    }
    
    .combined-info-header h2 {
        font-size: 1.8rem;
    }
    
    .combined-info-header p {
        font-size: 1.1rem;
    }
    
    .schedule-item {
        padding: 2rem;
    }
    
    .schedule-item-header i {
        font-size: 2.5rem;
        padding: 1rem;
    }
    
    .schedule-item-header h3 {
        font-size: 1.5rem;
    }
    
    .location-section h2 {
        font-size: 2rem;
    }
    
    .map-placeholder {
        padding: 3rem 2rem;
    }
    
    .form-submit .btn {
        padding: 1.2rem 3rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
}

/* ===== 13. ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.page-title {
    animation: titleFadeIn 0.8s ease-out;
}

.combined-info-section,
.location-section,
.form-container {
    animation: fadeInUp 0.6s ease-out;
}