/* ========================================
   CONTATO PAGE STYLES
   ======================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #004d42 100%);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zM22.344 0L13.858 8.485 15.272 9.9l9.9-9.9h-2.828zM27.03 0L16.13 10.9l1.415 1.413L28.444 1.414 27.03 0zM32.688 0L19.787 12.9l1.415 1.415L34.1 1.414 32.688 0zM38.344 0L23.444 14.9l1.414 1.414L39.757 1.414 38.344 0zM44 0L27.1 16.9l1.415 1.415L45.414 1.415 44 0zm5.657 0L31.757 17.9l1.414 1.414L51.07 1.415 49.657 0zM0 0l1.414 1.414L0 2.828V0zm0 5.657L5.657 0H3.828L0 3.828v1.83zm0 5.656L8.485 2.828 7.07 1.414 0 8.485v2.828zm0 5.658l11.313-8.486-1.414-1.414L0 14.142v2.83zm0 5.656L14.142 8.485l-1.414-1.414L0 19.8v2.828zm0 5.656l16.97-14.142-1.414-1.414L0 25.456v2.828zM0 34.97L19.8 15.172l-1.415-1.414L0 31.142v3.828zm0 5.656l22.627-19.8-1.414-1.413L0 36.8v3.827zm0 5.657l25.456-22.627-1.414-1.414L0 42.456v3.828z' fill='%2399fa08' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E") repeat;
}

.page-header-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-header .section-badge {
    background: rgba(153, 250, 8, 0.2);
    color: var(--primary-color);
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    margin-bottom: 1rem;
}

.page-header h1 span {
    color: var(--primary-color);
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb i {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb span {
    color: var(--primary-color);
}

/* Contact Main Section */
.contact-main {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info */
.contact-info h2 {
    font-size: 1.75rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.contact-info h2 span {
    color: var(--primary-color);
}

.contact-intro {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.info-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.info-icon.whatsapp i {
    color: white;
}

.info-content h3 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.info-content a {
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.info-content a:hover {
    color: var(--primary-color);
}

.info-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Social Links */
.social-links h4 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icons a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.social-icons a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    position: sticky;
    top: 100px;
}

.form-card {
    background: white;
    border-radius: var(--border-radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-muted);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    font-family: var(--font-family);
    transition: var(--transition-fast);
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(153, 250, 8, 0.15);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}

/* Checkbox Group */
.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.checkbox-label input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.checkbox-label input:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input:checked + .checkmark::after {
    content: '\f272';
    font-family: 'bootstrap-icons';
    font-size: 0.75rem;
    color: var(--secondary-color);
}

.btn-block {
    width: 100%;
}

.form-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-note i {
    color: var(--primary-color);
}

/* Quick Contact Section */
.quick-contact {
    padding: 60px 0;
    background: white;
}

.quick-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.quick-option {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-lg);
    transition: var(--transition-normal);
    text-decoration: none;
    border: 2px solid transparent;
}

.quick-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.quick-option .option-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quick-option .option-icon i {
    font-size: 1.5rem;
    color: white;
}

.quick-option.whatsapp .option-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.quick-option.phone .option-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.quick-option.phone .option-icon i {
    color: var(--secondary-color);
}

.quick-option.email .option-icon {
    background: linear-gradient(135deg, var(--secondary-color), #004d42);
}

.quick-option .option-content h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.quick-option .option-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.quick-option > i {
    margin-left: auto;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.quick-option:hover > i {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Demo Section */
.demo-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.demo-box {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #004d42 100%);
    border-radius: var(--border-radius-xl);
    padding: 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.demo-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='2' fill='%2399fa08' fill-opacity='0.1'/%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

.demo-content {
    position: relative;
    z-index: 2;
}

.demo-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.demo-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.demo-content h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.demo-content > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.demo-benefits {
    list-style: none;
}

.demo-benefits li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.demo-benefits li i {
    color: var(--primary-color);
}

.demo-action {
    text-align: center;
    position: relative;
    z-index: 2;
}

.demo-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 1.5rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.demo-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-wrapper {
    position: relative;
    margin-top: 2rem;
}

.map-container {
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    display: block;
    width: 100%;
}

.map-info-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    max-width: 300px;
}

.map-info-card h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.map-info-card p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.map-info-card p i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.map-info-card .btn {
    margin-top: 0.5rem;
}

/* FAQ Quick Section */
.faq-quick {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.faq-more {
    text-align: center;
    margin-top: 2rem;
}

.faq-more p {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

/* Form Success/Error States */
.form-control.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.15);
}

.form-control.success {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(153, 250, 8, 0.15);
}

.form-message {
    padding: 1rem;
    border-radius: var(--border-radius-md);
    margin-bottom: 1.5rem;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(153, 250, 8, 0.1);
    color: #059669;
    border: 1px solid rgba(153, 250, 8, 0.3);
}

.form-message.error {
    display: block;
    background: rgba(231, 76, 60, 0.1);
    color: #dc2626;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

/* ========================================
   RESPONSIVE - CONTACT PAGE
   ======================================== */

@media (max-width: 1200px) {
    .contact-grid {
        gap: 40px;
    }
    
    .demo-box {
        padding: 2.5rem;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form-wrapper {
        position: static;
    }
    
    .quick-options {
        grid-template-columns: 1fr;
    }
    
    .demo-box {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .demo-content h2 {
        font-size: 1.75rem;
    }
    
    .demo-benefits {
        display: inline-block;
        text-align: left;
    }
    
    .map-info-card {
        position: static;
        max-width: 100%;
        margin-top: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 140px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .contact-main {
        padding: 60px 0;
    }
    
    .contact-info h2 {
        font-size: 1.5rem;
    }
    
    .form-card {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .demo-box {
        padding: 2rem;
    }
    
    .demo-content h2 {
        font-size: 1.5rem;
    }
    
    .quick-option {
        padding: 1.25rem;
    }
    
    .quick-option .option-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 120px 0 50px;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
    }
    
    .info-card {
        padding: 1rem;
    }
    
    .info-icon {
        width: 48px;
        height: 48px;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
    }
    
    .form-header h3 {
        font-size: 1.25rem;
    }
    
    .demo-benefits li {
        font-size: 0.95rem;
    }
    
    .demo-image {
        max-width: 100%;
    }
    
    .faq-item {
        padding: 1.25rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
}
