/* Garantir que a barra de benefícios mantenha as cores originais */
.benefits-bar .benefit-item,
.benefits-bar .benefit-item span {
    color: white !important;
}

.benefits-bar .benefit-item svg {
    color: #e55c78 !important;
}

/* Hero Section Contato */
.contact-hero-modern {
    position: relative;
    padding: 3rem 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f5f2 0%, #e55c78 100%);
    margin-top: -1px;
}

.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.contact-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top left, rgba(229, 92, 120, 0.1), transparent 70%),
                radial-gradient(ellipse at bottom right, rgba(31, 26, 27, 0.1), transparent 70%);
}

.contact-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.05) 35px, rgba(255, 255, 255, 0.05) 70px);
}

.contact-hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.contact-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: #6b6466;
    font-size: 0.875rem;
}

.contact-breadcrumb a {
    color: #1f1a1b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-breadcrumb a:hover {
    color: #e55c78;
}

.contact-hero-content {
    max-width: 800px;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, #e55c78, #d14567);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(229, 92, 120, 0.3);
}

.contact-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: #1f1a1b;
    margin-bottom: 1.5rem;
}

.contact-title-main,
.contact-title-accent {
    display: block;
}

.contact-title-accent {
    color: #e55c78;
    position: relative;
}

.contact-title-accent::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e55c78, transparent);
    border-radius: 2px;
}

.contact-hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #433d3f;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.contact-hero-quick-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(31, 26, 27, 0.1);
    color: #1f1a1b;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Formulários de Contato */
.contact-forms-modern {
    padding: 6rem 0;
    background: white;
}

.contact-forms-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-forms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-card,
.newsletter-form-card {
    background: #f8f5f2;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(229, 92, 120, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-badge {
    display: inline-block;
    background: rgba(229, 92, 120, 0.1);
    color: #e55c78;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: #1f1a1b;
    margin-bottom: 1rem;
}

.text-accent {
    color: #e55c78;
}

.form-description {
    color: #6b6466;
    font-size: 0.875rem;
    line-height: 1.5;
}

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

.form-group-modern {
    margin-bottom: 1.5rem;
}

.form-label-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #1f1a1b;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.form-input-modern,
.form-select-modern,
.form-textarea-modern {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    background: white;
}

.form-input-modern:focus,
.form-select-modern:focus,
.form-textarea-modern:focus {
    outline: none;
    border-color: #e55c78;
    box-shadow: 0 0 0 3px rgba(229, 92, 120, 0.1);
}

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

.contact-submit-btn,
.newsletter-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #e55c78;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit-btn:hover,
.newsletter-submit-btn:hover {
    background: #d14567;
    transform: translateY(-2px);
}

.newsletter-benefits {
    margin-bottom: 2rem;
}

.newsletter-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #433d3f;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.newsletter-benefits .benefit-item svg {
    color: #e55c78;
    flex-shrink: 0;
}

.form-checkbox-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #433d3f;
    padding: 0.5rem;
    margin: -0.5rem;
    border-radius: 0.5rem;
    min-height: 44px;
    transition: background-color 0.2s ease;
}

.form-checkbox-modern:hover {
    background-color: rgba(229, 92, 120, 0.05);
}

.form-checkbox-modern input {
    display: none;
}

.checkbox-mark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid #e9ecef;
    border-radius: 0.25rem;
    position: relative;
    transition: all 0.3s ease;
}

/* Larger touch target for checkbox */
.checkbox-mark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
}

.form-checkbox-modern input:checked + .checkbox-mark {
    background: #e55c78;
    border-color: #e55c78;
}

.form-checkbox-modern input:checked + .checkbox-mark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.form-feedback {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
    font-size: 0.875rem;
    display: none;
}

.form-feedback.success {
    background: rgba(29, 127, 75, 0.1);
    color: #1d7f4b;
    border: 1px solid rgba(29, 127, 75, 0.2);
    display: block;
}

.form-feedback.error {
    background: rgba(180, 35, 44, 0.1);
    color: #b4232c;
    border: 1px solid rgba(180, 35, 44, 0.2);
    display: block;
}

/* Informações de Contato */
.contact-info-modern {
    padding: 6rem 0;
    background: #f8f5f2;
}

.contact-info-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.info-badge {
    display: inline-block;
    background: rgba(229, 92, 120, 0.1);
    color: #e55c78;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.info-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1f1a1b;
    margin-bottom: 1rem;
}

.info-description {
    color: #6b6466;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.channel-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(229, 92, 120, 0.1);
    transition: all 0.3s ease;
}

.channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(229, 92, 120, 0.2);
}

.channel-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #e55c78, #d14567);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.channel-icon.whatsapp-icon {
    background: linear-gradient(135deg, #e55c78, #d14567);
}

.channel-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #1f1a1b;
    margin-bottom: 0.5rem;
}

.channel-content p {
    color: #6b6466;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.channel-link {
    color: #e55c78;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.channel-link:hover {
    color: #d14567;
}

/* Mapa */
.contact-map-modern {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(229, 92, 120, 0.1);
}

.map-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(229, 92, 120, 0.1);
}

.map-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #1f1a1b;
    margin-bottom: 0.5rem;
}

.map-header p {
    color: #6b6466;
    font-size: 0.875rem;
}

.map-wrapper {
    position: relative;
    height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-address {
    padding: 2rem;
    text-align: center;
    background: #f8f5f2;
}

.map-address p {
    color: #433d3f;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-forms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-modern {
        padding: 2rem 0;
    }

    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-hero-description {
        font-size: 1.125rem;
    }

    .contact-hero-quick-info {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-forms-modern,
    .contact-info-modern {
        padding: 4rem 0;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-channels {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .map-wrapper {
        height: 300px;
    }
}
