* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(135deg, rgba(26, 35, 50, 0.95) 0%, rgba(44, 62, 80, 0.92) 50%, rgba(52, 73, 94, 0.9) 100%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="2" cy="2" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="50" r="1.5" fill="%23ffffff" opacity="0.15"/><circle cx="98" cy="98" r="1" fill="%23ffffff" opacity="0.1"/></svg>');
    background-size: cover, 100px 100px;
    color: white;
    text-align: center;
    padding: 40px 20px;
    overflow: hidden;
}

/*Modal*/

#popoverTelefone {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,.35);
  width: 320px;
  max-width: 90%;
  text-align: center;

  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  
  border: none;
}

#popoverTelefone::backdrop {
  background: rgba(0,0,0,0.65);
}

/* Conteúdo */
.acoes {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  justify-content: center;
  padding: 5px 10px;

}

.acoes button {
    flex: 1;
    padding: 12px 0;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    background-color: blueviolet;
    color: white;
    
}
  
.form-group label span {
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: bold;
  font-size: 12px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: pulseOverlay 8s ease-in-out infinite;
}

@keyframes pulseOverlay {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.logo-container {
    margin-bottom: 30px;
}

.logo-container a {
    text-decoration: none;
    display: inline-block;
}

.logo {
    max-width: 260px;
    height: auto;
    filter: brightness(1.1) drop-shadow(0 4px 12px rgba(255, 107, 53, 0.2));
    animation: floatLogo 3s ease-in-out infinite;
    transition: filter 0.3s ease;
}

.logo-container a:hover .logo {
    filter: brightness(1.2) drop-shadow(0 6px 16px rgba(255, 107, 53, 0.3));
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
}

.badge i {
    color: #ff6b35;
    font-size: 1.1rem;
}

.btn-start-simulator {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border: none;
    padding: 18px 48px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-start-simulator:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.btn-start-simulator i {
    transition: transform 0.3s ease;
}

.btn-start-simulator:hover i {
    transform: translateX(5px);
}

.simulator-section {
    padding: 80px 20px;
    min-height: 100vh;
    display: none;
}

.simulator-section.active {
    display: block;
}

.progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    padding: 25px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    to { left: 100%; }
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    transform: scale(1.1);
}

.progress-step.completed .step-number {
    background: #28a745;
    color: white;
}

.step-label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
}

.progress-step.active .step-label {
    color: #ff6b35;
    font-weight: 600;
}

.progress-line {
    width: 80px;
    height: 3px;
    background: #e9ecef;
    margin: 0 10px;
}

.progress-step.completed ~ .progress-line {
    background: #28a745;
}

.question-card {
    display: none;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 107, 53, 0.08);
    animation: fadeInUp 0.5s ease-out;
    position: relative;
    overflow: hidden;
}

.question-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42, #ff6b35);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.question-card.active {
    display: block;
}

.question-header {
    text-align: center;
    margin-bottom: 40px;
}

.question-title {
    font-size: 2rem;
    color: #1a2332;
    margin-bottom: 15px;
    font-weight: 700;
}

.question-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 400;
}

.question-body {
    margin-bottom: 40px;
}

.input-field {
    width: 100%;
    padding: 18px 24px;
    font-size: 1.2rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
}

.input-field:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.option-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.option-card:hover {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f2 100%);
    border-color: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

@media (hover: none) {
    .option-card:hover {
        transform: none;
    }
    .option-card:active {
        transform: scale(0.98);
    }
}

.option-card.selected {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border-color: #ff6b35;
    transform: scale(1.05);
}

.option-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ff6b35;
    transition: transform 0.3s ease;
}

.option-card:hover i {
    transform: scale(1.1);
}

.option-card.selected i {
    color: white;
}

.option-card span {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

.options-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option-item {
    background: #f8f9fa;
    padding: 20px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.option-item:hover {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f2 100%);
    border-color: #ff6b35;
    transform: translateX(8px);
}

@media (hover: none) {
    .option-item:hover {
        transform: none;
    }
    .option-item:active {
        transform: scale(0.98);
    }
}

.option-item.selected {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    border-color: #ff6b35;
}

.option-item i {
    font-size: 1.5rem;
    color: #ff6b35;
}

.option-item.selected i {
    color: white;
}

.option-item span {
    font-size: 1.1rem;
    font-weight: 500;
}

.error-message {
    display: block;
    color: #dc3545;
    font-size: 0.95rem;
    margin-top: 10px;
    text-align: center;
}

.question-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.btn-next,
.btn-back,
.btn-submit {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-next {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    margin-left: auto;
}

.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn-back {
    background: #6c757d;
    color: white;
}

.btn-back:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-submit {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    padding: 18px;
    font-size: 1.2rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
}

/* Form Styles */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    font-size: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-family: inherit;
    background-color: white;
    width: 100%;
    display: block !important;
    height: auto !important;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23333" d="M6 9L1 4h10z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select:disabled {
    background-color: #f8f9fa;
    cursor: not-allowed;
    opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

select.Estado,
select.ddlCidade {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    color: white;
    padding: 40px 20px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
}

.footer-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    font-size: 1.05rem;
}

.footer-info i {
    color: #ff6b35;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.8;
    font-size: 0.95rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 30px 15px;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.95rem;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .logo {
        max-width: 180px;
        margin-bottom: 20px;
    }

    .hero-badges {
        gap: 10px;
        margin-bottom: 30px;
    }

    .badge {
        font-size: 0.8rem;
        padding: 8px 14px;
        gap: 6px;
    }

    .badge i {
        font-size: 0.95rem;
    }

    .btn-start-simulator {
        padding: 14px 28px;
        font-size: 0.95rem;
        gap: 8px;
    }

    .simulator-section {
        padding: 30px 15px;
    }

    .question-card {
        padding: 25px 18px;
        border-radius: 20px;
    }

    .question-header {
        margin-bottom: 30px;
    }

    .question-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .question-subtitle {
        font-size: 0.95rem;
    }

    .progress-bar {
        overflow-x: auto;
        justify-content: flex-start;
        padding: 18px 15px;
        margin-bottom: 30px;
        gap: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .step-number {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .progress-line {
        width: 35px;
        min-width: 35px;
    }

    .step-label {
        font-size: 0.7rem;
        white-space: nowrap;
    }

    .options-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .option-card {
        padding: 20px;
    }

    .option-card i {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .option-card span {
        font-size: 1rem;
    }

    .options-list {
        gap: 10px;
    }

    .option-item {
        padding: 16px 20px;
        gap: 15px;
    }

    .option-item i {
        font-size: 1.3rem;
    }

    .option-item span {
        font-size: 0.95rem;
    }

    .input-field {
        padding: 15px 18px;
        font-size: 1.05rem;
    }

    .question-body {
        margin-bottom: 30px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .btn-next,
    .btn-back {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .btn-submit {
        padding: 14px;
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-logo img {
        max-width: 160px;
    }

    .footer-info p {
        justify-content: center;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 25px 12px;
    }

    .hero-title {
        font-size: 1.7rem;
        line-height: 1.25;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .logo {
        max-width: 160px;
    }

    .hero-badges {
        flex-direction: column;
        width: 100%;
    }

    .badge {
        width: 100%;
        justify-content: center;
        max-width: 280px;
        margin: 0 auto;
    }

    .btn-start-simulator {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .progress-bar {
        padding: 15px 10px;
    }

    .step-number {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }

    .progress-line {
        width: 25px;
        min-width: 25px;
    }

    .question-card {
        padding: 20px 15px;
    }

    .question-title {
        font-size: 1.25rem;
    }

    .question-subtitle {
        font-size: 0.9rem;
    }

    .option-card {
        padding: 18px;
    }

    .option-item {
        padding: 14px 16px;
    }

    .btn-next,
    .btn-back {
        padding: 11px 24px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .question-footer {
        flex-direction: column;
        gap: 10px;
    }

    .btn-next {
        margin-left: 0;
    }

    .btn-submit {
        padding: 13px;
        font-size: 0.95rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }
}

