/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2C3E50;
    background-color: #F8F9FA;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #B85450;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255,255,255,0.1);
}

.whatsapp-link {
    background: #4ECDC4;
    color: white !important;
    font-weight: 600;
}

.whatsapp-link:hover {
    background: #45B7B8;
    transform: translateY(-2px);
}

.contract-generator-link {
    background: #6C5CE7;
    color: white !important;
    font-weight: 600;
    margin-right: 1rem;
}

.contract-generator-link:hover {
    background: #5A4FCF;
    transform: translateY(-2px);
}

.management-link {
    background: #FD79A8;
    color: white !important;
    font-weight: 600;
    margin-right: 1rem;
}

.management-link:hover {
    background: #E84393;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #B85450 0%, #A0453F 100%);
    color: white;
    padding: 4rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 1.2rem;
}

/* Form Preview */
.form-preview {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: perspective(1000px) rotateY(-5deg);
}

.preview-header {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.preview-dots {
    display: flex;
    gap: 0.5rem;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E0E6ED;
}

.preview-dots span:first-child {
    background: #FF5F56;
}

.preview-dots span:nth-child(2) {
    background: #FFBD2E;
}

.preview-dots span:last-child {
    background: #27CA3F;
}

.preview-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.preview-line {
    height: 12px;
    background: #E0E6ED;
    border-radius: 6px;
}

.preview-line.long {
    width: 100%;
}

.preview-line.medium {
    width: 70%;
}

.preview-line.short {
    width: 40%;
}

/* Form Section */
.form-section {
    padding: 4rem 0;
}

.contract-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

.card-header {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    color: white;
    padding: 2rem;
}

.card-header h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-icon {
    font-size: 1.5rem;
}

.card-header p {
    opacity: 0.9;
    font-size: 1rem;
}

.card-content {
    padding: 2rem;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2C3E50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #E0E6ED;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

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

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

/* Service Selection */
.service-selection,
.duration-selection,
.extras-selection,
.photo-model-selection {
    margin-bottom: 2rem;
}

.service-selection h3,
.duration-selection h3,
.extras-selection h3,
.photo-model-selection h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2C3E50;
}

.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.service-option {
    position: relative;
}

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

.service-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid #E0E6ED;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.service-card:hover {
    border-color: #4ECDC4;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.2);
}

.service-option input[type="radio"]:checked + .service-card {
    border-color: #4ECDC4;
    background: linear-gradient(135deg, #4ECDC4 0%, #45B7B8 100%);
    color: white;
}

.service-image {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Alterado de 'contain' para 'cover' */
}

/* Photo Model Options */
.photo-model-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.photo-model-option {
    position: relative;
}

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

.photo-model-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid #E0E6ED;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.photo-model-card:hover {
    border-color: #4ECDC4;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.2);
}

.photo-model-option input[type="radio"]:checked + .photo-model-card {
    border-color: #4ECDC4;
    background: linear-gradient(135deg, #4ECDC4 0%, #45B7B8 100%);
    color: white;
}

.photo-model-icon {
    font-size: 2rem;
    min-width: 60px;
    text-align: center;
}

.photo-model-info h4 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.photo-model-info p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Duration Options */
.duration-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.duration-option {
    position: relative;
}

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

.duration-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    border: 2px solid #E0E6ED;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    text-align: center;
}

.duration-card:hover {
    border-color: #4ECDC4;
    transform: translateY(-2px);
}

.duration-option input[type="radio"]:checked + .duration-card {
    border-color: #4ECDC4;
    background: linear-gradient(135deg, #4ECDC4 0%, #45B7B8 100%);
    color: white;
}

.duration-time {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.duration-info span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Extras Options */
.extras-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.extra-option {
    position: relative;
}

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

.extra-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #E0E6ED;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.extra-card:hover {
    border-color: #4ECDC4;
    transform: translateY(-2px);
}

.extra-option input[type="checkbox"]:checked + .extra-card {
    border-color: #4ECDC4;
    background: linear-gradient(135deg, #4ECDC4 0%, #45B7B8 100%);
    color: white;
}

.extra-icon {
    font-size: 1.5rem;
    min-width: 40px;
    text-align: center;
}

.extra-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.extra-info h4 {
    font-weight: 600;
}

.extra-price {
    font-weight: 700;
    color: #B85450;
}

.extra-option input[type="checkbox"]:checked + .extra-card .extra-price {
    color: white;
}

/* Price Summary */
.price-summary {
    background: #F8F9FA;
    border-radius: 12px;
    padding: 1.5rem;
}

.price-breakdown {
    margin-bottom: 1.5rem;
}

.price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #E0E6ED;
}

.price-line.subtotal {
    font-weight: 700;
    font-size: 1.1rem;
    border-bottom: 2px solid #2C3E50;
}

/* Payment Options */
.payment-options h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2C3E50;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.payment-option {
    position: relative;
}

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

.payment-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #E0E6ED;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.payment-card:hover {
    border-color: #4ECDC4;
    transform: translateY(-2px);
}

.payment-option input[type="radio"]:checked + .payment-card {
    border-color: #4ECDC4;
    background: linear-gradient(135deg, #4ECDC4 0%, #45B7B8 100%);
    color: white;
}

.payment-icon {
    font-size: 1.5rem;
}

.payment-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.payment-info span {
    opacity: 0.8;
}

/* Coupon Input */
.coupon-input-group {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.coupon-input-group input {
    width: 100%;
}

/* Final Price */
.final-price {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid #4ECDC4;
}

.discount-lines {
    margin-bottom: 1rem;
}

.price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    color: #27AE60;
    font-weight: 600;
}

.price-line.negative-discount {
    color: #B85450; /* Cor para destaque negativo */
    font-weight: 700;
}

.price-line.coupon-highlight {
    font-size: 1.1rem;
    font-weight: 700;
    color: #B85450; /* Cor para destaque da frase do cupom */
}

.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 2px solid #2C3E50;
    font-size: 1.5rem;
    font-weight: 800;
    color: #2C3E50;
}

/* Requirements */
.requirements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.requirement-item input[type="checkbox"] {
    margin-top: 0.25rem;
    transform: scale(1.2);
}

.requirement-item label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
}

.requirement-icon {
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

/* Terms Acceptance */
.terms-acceptance {
    margin-bottom: 2rem;
}

.terms-acceptance input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.terms-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid #E0E6ED;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.terms-label:hover {
    border-color: #4ECDC4;
}

.terms-acceptance input[type="checkbox"]:checked + .terms-label {
    border-color: #4ECDC4;
    background: linear-gradient(135deg, #4ECDC4 0%, #45B7B8 100%);
    color: white;
}

.terms-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.terms-text strong {
    display: block;
    margin-bottom: 0.25rem;
}

.terms-text small {
    opacity: 0.8;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #4ECDC4 0%, #45B7B8 100%);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

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

.btn-icon {
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background: #2C3E50;
    color: white;
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.footer-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-icon {
    font-size: 1.1rem;
}

.footer-slogan {
    text-align: right;
}

.footer-slogan p {
    font-size: 1.1rem;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .form-preview {
        transform: none;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .service-options {
        grid-template-columns: 1fr;
    }
    
    .duration-options {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-slogan {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .duration-options {
        grid-template-columns: 1fr;
    }
    
    .extras-options {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-card {
    animation: fadeInUp 0.6s ease forwards;
}

.form-card:nth-child(1) { animation-delay: 0.1s; }
.form-card:nth-child(2) { animation-delay: 0.2s; }
.form-card:nth-child(3) { animation-delay: 0.3s; }
.form-card:nth-child(4) { animation-delay: 0.4s; }
.form-card:nth-child(5) { animation-delay: 0.5s; }
.form-card:nth-child(6) { animation-delay: 0.6s; }
.form-card:nth-child(7) { animation-delay: 0.7s; }

.service-image {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Alterado de 'contain' para 'cover' */
}

.photo-model-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.photo-model-option {
    position: relative;
}

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

.photo-model-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid #E0E6ED;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.photo-model-card:hover {
    border-color: #4ECDC4;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(78, 205, 196, 0.2);
}

.photo-model-option input[type="radio"]:checked + .photo-model-card {
    border-color: #4ECDC4;
    background: linear-gradient(135deg, #4ECDC4 0%, #45B7B8 100%);
    color: white;
}

.photo-model-icon {
    font-size: 2rem;
    min-width: 60px;
    text-align: center;
}

.photo-model-info h4 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.photo-model-info p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.coupon-input-group {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.coupon-input-group input {
    width: 100%;
}

.price-line.negative-discount {
    color: #B85450; /* Cor para destaque negativo */
    font-weight: 700;
}

.price-line.coupon-highlight {
    font-size: 1.1rem;
    font-weight: 700;
    color: #B85450; /* Cor para destaque da frase do cupom */
}





/* Modal de Impressão */
.print-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.print-modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.print-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #E5E7EB;
    background: #F8F9FA;
    border-radius: 12px 12px 0 0;
}

.print-modal-header h2 {
    margin: 0;
    color: #2C3E50;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6B7280;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: #E5E7EB;
    color: #374151;
}

.print-modal-body {
    padding: 30px;
    line-height: 1.6;
}

.print-modal-footer {
    display: flex;
    gap: 15px;
    padding: 20px 30px;
    border-top: 1px solid #E5E7EB;
    background: #F8F9FA;
    border-radius: 0 0 12px 12px;
    justify-content: center;
}

.print-btn, .whatsapp-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 150px;
    justify-content: center;
}

.print-btn {
    background: #6B7280;
    color: white;
}

.print-btn:hover {
    background: #4B5563;
    transform: translateY(-2px);
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

/* Estilos para impressão */
@media print {
    .print-modal-header,
    .print-modal-footer {
        display: none !important;
    }
    
    .print-modal-content {
        box-shadow: none;
        border-radius: 0;
        max-height: none;
        width: 100%;
        max-width: none;
    }
    
    .print-modal-body {
        padding: 0;
    }
}

/* Estilos para o conteúdo do resumo */
.order-summary {
    font-family: 'Inter', sans-serif;
}

.order-summary h3 {
    color: #B85450;
    border-bottom: 2px solid #B85450;
    padding-bottom: 8px;
    margin-bottom: 15px;
    margin-top: 25px;
}

.order-summary h3:first-child {
    margin-top: 0;
}

.order-summary .info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #E5E7EB;
}

.order-summary .info-row:last-child {
    border-bottom: none;
}

.order-summary .info-label {
    font-weight: 600;
    color: #374151;
}

.order-summary .info-value {
    color: #6B7280;
}

.order-summary .total-row {
    background: #F8F9FA;
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #B85450;
}

.order-summary .discount-row {
    color: #059669;
    font-weight: 600;
}

