/* ============================================
   Big Central Lojista - Página de Contato
   Design Moderno, Criativo e Responsivo
   ============================================ */

/* Hero Section */
.contato-hero-section {
    background: linear-gradient(135deg, #DC143C 0%, #B71C1C 100%);
    padding: 30px 20px 40px;
    position: relative;
    overflow: hidden;
}

/* Ondulação criativa no fundo */
.contato-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 120"><path fill="rgba(255,255,255,0.08)" d="M0,64L48,69.3C96,75,192,85,288,85.3C384,85,480,75,576,64C672,53,768,43,864,48C960,53,1056,75,1152,80C1248,85,1344,75,1392,69.3L1440,64L1440,120L1392,120C1344,120,1248,120,1152,120C1056,120,960,120,864,120C768,120,672,120,576,120C480,120,384,120,288,120C192,120,96,120,48,120L0,120Z"></path></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    opacity: 1;
    animation: wave 8s ease-in-out infinite;
}

.contato-hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 120"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,101.3C96,107,192,117,288,117.3C384,117,480,107,576,96C672,85,768,75,864,80C960,85,1056,107,1152,112C1248,117,1344,107,1392,101.3L1440,96L1440,120L1392,120C1344,120,1248,120,1152,120C1056,120,960,120,864,120C768,120,672,120,576,120C480,120,384,120,288,120C192,120,96,120,48,120L0,120Z" transform="scale(-1,1) translate(-1440,0)"></path></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    animation: wave 10s ease-in-out infinite reverse;
}

@keyframes wave {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(-25px) translateY(5px);
    }
}

.contato-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contato-hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contato-hero-image {
    flex: 0 0 auto;
    z-index: 2;
}

.contato-mascot-img {
    max-width: 200px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-6px);
    }
}

.contato-hero-text {
    flex: 1;
    min-width: 250px;
    text-align: left;
    z-index: 2;
}

.contato-hero-title {
    font-size: 42px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 
                 0 1px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
    position: relative;
}

.contato-hero-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.01em;
}

/* Main Section */
.contato-main-section {
    padding: 50px 20px;
    background: linear-gradient(to bottom, #F9FAFB 0%, #FFFFFF 100%);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Alerts */
.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #10B981;
}

.alert-error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #EF4444;
}

.alert ul {
    margin: 0;
    padding-left: 20px;
}

.alert i {
    font-size: 20px;
    flex-shrink: 0;
}

/* Cards */
.contato-form-card,
.contato-info-card,
.contato-map-card {
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contato-form-card:hover,
.contato-info-card:hover,
.contato-map-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contato-card-header,
.contato-info-header,
.contato-map-header {
    padding: 32px 32px 24px;
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
    border-bottom: 2px solid #F3F4F6;
}

.contato-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contato-card-title i {
    color: #DC143C;
    font-size: 26px;
}

.contato-card-subtitle {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
}

/* Formulário */
.contato-form {
    padding: 32px;
}

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

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

.form-label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #374151;
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 16px;
    color: #1F2937;
    background: #FFFFFF;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #DC143C;
    box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.1);
}

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

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23374151' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.btn-contato-submit {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #DC143C 0%, #B71C1C 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

.btn-contato-submit:hover {
    background: linear-gradient(135deg, #B71C1C 0%, #991B1B 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 20, 60, 0.4);
}

.btn-contato-submit:active {
    transform: translateY(0);
}

/* Informações */
.contato-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contato-info-content {
    padding: 32px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #F3F4F6;
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #DC143C 0%, #B71C1C 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.2);
}

.info-icon i {
    font-size: 22px;
    color: #FFFFFF;
}

.info-text {
    flex: 1;
}

.info-title {
    font-size: 18px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
}

.info-description {
    font-size: 15px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 8px;
}

.info-link,
.info-link-phone {
    color: #DC143C;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.info-link:hover,
.info-link-phone:hover {
    color: #B71C1C;
    text-decoration: underline;
}

.whatsapp-link {
    background: #25D366;
    color: #FFFFFF !important;
    padding: 8px 16px;
    border-radius: 8px;
    margin-top: 8px;
    display: inline-flex;
    text-decoration: none;
    transition: background 0.3s ease;
}

.whatsapp-link:hover {
    background: #20BA5A;
    text-decoration: none;
}

/* Horário */
.horario-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.horario-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #F3F4F6;
}

.horario-item:last-child {
    border-bottom: none;
}

.horario-dia {
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

.horario-hora {
    font-size: 14px;
    color: #6B7280;
    font-weight: 600;
}

/* Mapa */
.contato-map-card {
    margin-top: 0;
}

.contato-map-container {
    position: relative;
    padding: 32px;
}

.contato-google-map {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-overlay {
    position: absolute;
    bottom: 48px;
    right: 48px;
    z-index: 10;
}

.map-link-btn {
    background: #FFFFFF;
    color: #DC143C;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.map-link-btn:hover {
    background: #DC143C;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 20, 60, 0.3);
}

/* Responsivo - Tablet */
@media (max-width: 1024px) {
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contato-hero-section {
        padding: 25px 20px 35px;
    }
    
    .contato-hero-content {
        gap: 12px;
    }
    
    .contato-mascot-img {
        max-width: 180px;
    }
    
    .contato-hero-title {
        font-size: 36px;
        text-align: center;
    }
    
    .contato-hero-subtitle {
        font-size: 18px;
        text-align: center;
    }
    
    .contato-hero-text {
        text-align: center;
    }
}

/* Responsivo - Mobile */
@media (max-width: 768px) {
    .contato-hero-section {
        padding: 25px 20px 35px;
    }
    
    .contato-hero-content {
        flex-direction: column;
        gap: 12px;
    }
    
    .contato-mascot-img {
        max-width: 150px;
    }
    
    .contato-hero-title {
        font-size: 32px;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .contato-hero-subtitle {
        font-size: 17px;
        text-align: center;
    }
    
    .contato-hero-text {
        text-align: center;
    }
    
    .contato-main-section {
        padding: 30px 15px;
    }
    
    .contato-grid {
        gap: 24px;
    }
    
    .contato-card-header,
    .contato-info-header,
    .contato-map-header {
        padding: 24px 24px 20px;
    }
    
    .contato-card-title {
        font-size: 20px;
    }
    
    .contato-form {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contato-info-content {
        padding: 24px;
    }
    
    .info-item {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .contato-map-container {
        padding: 24px;
    }
    
    .contato-google-map {
        height: 300px;
    }
    
    .map-overlay {
        bottom: 32px;
        right: 32px;
    }
    
    .map-link-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .horario-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
    .contato-hero-title {
        font-size: 24px;
    }
    
    .contato-card-header,
    .contato-info-header,
    .contato-map-header {
        padding: 20px 16px 16px;
    }
    
    .contato-form,
    .contato-info-content,
    .contato-map-container {
        padding: 20px;
    }
    
    .map-overlay {
        bottom: 20px;
        right: 20px;
    }
}

