/* Orçamento Page - Professional Layout */

/* CSS Variables for consistent styling */
:root {
    --primary-black: #000000;
    --secondary-gray: #333333;
    --light-gray: #666666;
    --lighter-gray: #cccccc;
    --white: #ffffff;
    --background-light: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* Base Layout */
body {
    padding-top: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--primary-black);
}

main {
    padding-top: 80px;
    min-height: 100vh;
}

/* Hero Section - Professional Design */
.quote-hero {
    padding: 60px 0 70px;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-gray) 100%);
    color: var(--white);
    text-align: center;
    margin-top: -80px;
    padding-top: 140px;
    position: relative;
    overflow: hidden;
}

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

.quote-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.02) 50%, transparent 70%);
    z-index: 1;
}

.hero-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: var(--white);
    animation: pulse 2s infinite;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    }
}

.quote-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.quote-hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    font-weight: 500;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.benefit:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.benefit i {
    color: var(--lighter-gray);
    font-size: 1.1rem;
}

/* Quote Form Section */
.quote-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.quote-form-section .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1400px;
}

.form-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.form-header h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 1rem;
}

.form-header p {
    color: #666666;
    font-size: 1.1rem;
}

/* Form Sections */
.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.form-section h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-section h3 i {
    color: #666666;
}

/* Form Layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

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

.form-group label {
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #000000;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

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

.form-group select[multiple] {
    min-height: 120px;
}

/* Service Options */
.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.service-option {
    position: relative;
}

.service-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.service-option label {
    cursor: pointer;
    display: block;
}

.service-option .service-card {
    padding: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    background: #f8f9fa;
    height: 100%;
}

.service-option .service-card:hover {
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-option input[type="radio"]:checked + label .service-card {
    border-color: #000000;
    background: rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 1rem;
}

.service-card h4 {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-card p {
    color: #666666;
    font-size: 0.9rem;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding-top: 2rem;
}

/* Info Sidebar */
.info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #666666;
}

.info-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #000000;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.info-card h3 i {
    color: #666666;
}

.info-card p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.info-card ul li {
    padding: 0.5rem 0;
    color: #666666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card ul li i {
    color: #666666;
    width: 16px;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    margin: 0.5rem 0;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-btn:hover {
    background: #333333;
    transform: translateY(-1px);
}

/* Success Modal */
.success-content {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #000000, #333333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: #ffffff;
    animation: successPulse 2s infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.success-content h2 {
    color: #000000;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.success-content p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.next-steps {
    background: rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: left;
}

.next-steps h4 {
    color: #000000;
    margin-bottom: 1rem;
    text-align: center;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps ul li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #000000;
}

.next-steps ul li i {
    color: #666666;
    width: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .quote-form-section .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    main {
        padding-top: 70px; /* Reduz o espaço em mobile */
    }
    
    .quote-hero {
        padding: 50px 0 60px;
        margin-top: -70px;
        padding-top: 120px;
    }
    
    .footer {
        margin-top: 1rem;
        padding: 3rem 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 1rem 0;
    }
    
    .hero-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .benefit {
        padding: 0.75rem 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-options {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .quote-hero {
        padding: 100px 0 60px;
    }
    
    .quote-form-section {
        padding: 60px 0;
    }
    
    .form-wrapper {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .info-sidebar {
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .quote-hero h1 {
        font-size: 2rem;
    }
    
    .quote-hero p {
        font-size: 1.1rem;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    .form-section h3 {
        font-size: 1.3rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-card i {
        font-size: 2rem;
    }
}



/* Footer Styles */
.footer {
    width: 100%;
    background: #111;
    color: #fff;
    text-align: center;
    padding: 2rem 1rem 1rem 1rem;
    margin-top: 2rem;
    font-size: 1rem;
    border-top: 1px solid #222;
    box-sizing: border-box;
}

.footer p, .footer span {
    margin: 0;
    color: #ccc;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0 1rem 0;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1rem 0 0.7rem 0;
        font-size: 0.9rem;
    }
}