/* Hero Consultoria Styles */
.hero-section {
    padding-top: 100px;
    padding-bottom: 50px;
}

.hero-row {
    min-height: calc(100vh - 150px);
}

.hero-title-small {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.hero-benefits {
    margin: 1.5rem 0;
}

.benefit-point {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.benefit-point i {
    font-size: 1.1rem;
}

/* Modal Styles */
.modal-content {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: 2px solid #6366f1;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.modal-header {
    border-bottom: 1px solid rgba(99, 102, 241, 0.3);
    padding: 2rem 2rem 1rem;
}

.modal-title-wrapper h4 {
    color: #6366f1;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

.btn-close {
    background: white;
    border-radius: 50%;
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
    background: white;
}

.modal-body {
    padding: 1rem 2rem 2rem;
}

.modal-benefits h5 {
    color: #f1f5f9;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.benefit-list {
    margin-bottom: 2rem;
}

.benefit-item-modal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 0.5rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.benefit-item-modal i {
    color: #22c55e;
    font-size: 1.1rem;
}

.benefit-item-modal span {
    color: #f1f5f9;
    font-size: 0.9rem;
    font-weight: 500;
}

.urgency-alert {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: center;
    font-weight: 600;
}

.modal-form .form-label {
    color: #f1f5f9;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.modal-form .form-control,
.modal-form .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 0.5rem;
    color: white;
    padding: 0.75rem 1rem;
}

.modal-form .form-control:focus,
.modal-form .form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #6366f1;
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
    color: white;
}

.modal-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.modal-form .form-select option {
    background: #1e293b;
    color: white;
}

.modal-form .btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.modal-form .btn-primary:hover {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
}

.form-security {
    text-align: center;
}

.security-items {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.security-items span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
}

.security-items i {
    color: #22c55e;
}

/* Responsive */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 1rem;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
    
    .security-items {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .benefit-point {
        font-size: 0.9rem;
    }
}