* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00D9FF;
    --secondary-color: #00FF88;
    --bg-dark: #0A0E1A;
    --bg-darker: #050810;
    --bg-card: #0F1624;
    --text-primary: #FFFFFF;
    --text-secondary: #B8C5D6;
    --accent-gradient: linear-gradient(135deg, #00D9FF 0%, #00FF88 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
    max-height: 40px;
    width: auto;
    object-fit: contain;
}


.btn-avaliacao {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bg-card);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.btn-avaliacao:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0A1A2E 0%, #162B4A 50%, #0A0E1A 100%);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(0, 217, 255, 0.15) 0%, transparent 50%);
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,217,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: -1;
}

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

.hero-text {
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #FFFFFF 0%, #B8C5D6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

.feature-item svg {
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.4);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid rgba(0, 217, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: var(--primary-color);
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image-placeholder {
    width: 100%;
    height: 600px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.2);
    position: relative;
}

.hero-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 26, 46, 0.7) 0%, rgba(22, 43, 74, 0.5) 100%);
    pointer-events: none;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: var(--bg-darker);
}

.gallery-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.gallery-slider::-webkit-scrollbar {
    display: none;
}

.gallery-slide {
    min-width: 100%;
    scroll-snap-align: start;
    height: 400px;
    background: var(--bg-card);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 217, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.gallery-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 255, 136, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-slide.active::before {
    opacity: 1;
}

.slide-content {
    text-align: center;
    z-index: 1;
    padding: 40px;
}

.slide-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.slide-content p {
    font-size: 18px;
    color: var(--text-secondary);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 217, 255, 0.2);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.gallery-nav:hover {
    background: rgba(0, 217, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
    left: -25px;
}

.gallery-nav.next {
    right: -25px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--bg-dark);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

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

.service-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
}

.service-icon {
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.8;
}

.service-btn {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(0, 217, 255, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    width: 100%;
    text-align: center;
}

.service-btn.active {
    background: var(--accent-gradient);
    color: var(--bg-dark);
    border-color: transparent;
}

.service-btn:hover {
    background: rgba(0, 217, 255, 0.2);
    transform: translateY(-2px);
}

.service-btn.active:hover {
    background: var(--accent-gradient);
    opacity: 0.9;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.faq-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(0, 217, 255, 0.05);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.faq-question svg {
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 16px 24px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-contact {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    height: fit-content;
}

.faq-contact h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.faq-contact p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

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

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

.header .btn-whatsapp {
    width: auto;
    padding: 10px 20px;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
}

.header .btn-whatsapp .btn-text {
    display: inline;
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 16px;
    }

    .logo {
        flex: 1;
        min-width: 0;
    }

    .logo-img {
        height: 32px;
        max-height: 32px;
    }

    .header .btn-whatsapp {
        padding: 10px;
        width: auto;
        min-width: 44px;
    }

    .header .btn-whatsapp .btn-text {
        display: none;
    }

    .header .btn-whatsapp svg {
        width: 20px;
        height: 20px;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 16px 0;
    }

    .header-content {
        gap: 12px;
    }

    .logo svg {
        width: 32px;
        height: 32px;
    }

    .logo-text {
        font-size: 18px;
    }

    .header .btn-whatsapp {
        padding: 10px;
        min-width: 44px;
    }

    .header .btn-whatsapp .btn-text {
        display: none;
    }

    .header .btn-whatsapp svg {
        width: 20px;
        height: 20px;
        margin: 0;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--bg-darker);
    text-align: center;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
}

.contact-info p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: var(--bg-dark);
    text-align: center;
}

.values-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.values-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.btn-manifesto {
    padding: 16px 40px;
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-manifesto:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    padding: 60px 0;
    background: var(--bg-darker);
    border-top: 1px solid rgba(0, 217, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-content p {
    color: var(--text-secondary);
    max-width: 600px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 32px;
    max-width: 800px;
    width: 100%;
    border: 1px solid rgba(0, 217, 255, 0.2);
    position: relative;
    max-height: 95vh;
    overflow-y: auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.form-group {
    position: relative;
    margin-bottom: 0;
}

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

/* Floating Label Styles */
.floating-label {
    position: relative;
}

.floating-label label {
    position: absolute;
    left: 16px;
    top: 14px;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 400;
    pointer-events: none;
    transition: all 0.3s ease;
    background: var(--bg-card);
    padding: 0 4px;
}

.floating-label input:focus ~ label,
.floating-label input:not(:placeholder-shown) ~ label,
.floating-label input.has-value ~ label,
.floating-label select:focus ~ label,
.floating-label select.has-value ~ label,
.floating-label select:not([value=""]):not([value=" "]) ~ label,
.floating-label textarea:focus ~ label,
.floating-label textarea:not(:placeholder-shown) ~ label,
.floating-label textarea.has-value ~ label {
    top: -10px;
    left: 12px;
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 500;
}

.floating-label input,
.floating-label select,
.floating-label textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-dark);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
}

.floating-label input:focus,
.floating-label select:focus,
.floating-label textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

.floating-label input::placeholder {
    color: transparent;
}

.floating-label textarea {
    resize: vertical;
    min-height: 80px;
    padding-top: 16px;
}

.floating-label select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2300D9FF' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.floating-label select.has-value {
    color: var(--text-primary);
}

.floating-label select option:first-child {
    color: var(--text-secondary);
}

.floating-label select option {
    background: var(--bg-dark);
    color: var(--text-primary);
}

.btn-submit {
    width: 100%;
    margin: 20px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}


.modal-subtitle {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 15px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

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

.problem-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.3s;
}

.problem-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
}

.problem-card.highlight {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 255, 136, 0.1) 100%);
    border-color: var(--primary-color);
}

.problem-icon {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-icon svg {
    width: 48px;
    height: 48px;
}

.problem-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.problem-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
}

.about-text .lead {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 24px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    line-height: 1.3;
    font-size: 14px;
}

.about-visual {
    position: sticky;
    top: 100px;
}

.about-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    height: fit-content;
}

.about-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.about-card-header svg {
    flex-shrink: 0;
}

.about-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.comparison-side {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
}

.comparison-side.negative {
    background: rgba(255, 77, 77, 0.08);
    border-right: 1px solid rgba(255, 77, 77, 0.2);
}

.comparison-side.positive {
    background: rgba(0, 255, 136, 0.08);
    border-left: 1px solid rgba(0, 255, 136, 0.2);
}

.comparison-side h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 217, 255, 0.15);
}

.comparison-side.negative h4 {
    color: #FF6B6B;
}

.comparison-side.positive h4 {
    color: #00FF88;
}

.comparison-side ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.comparison-side li {
    padding: 0;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    position: relative;
    padding-left: 24px;
}

.comparison-side.negative li::before {
    content: '↓';
    position: absolute;
    left: 0;
    top: 0;
    color: #FF6B6B;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.5;
}

.comparison-side.positive li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #00FF88;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.5;
}

/* Solution Section */
.solution-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.solution-chain {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
    padding: 20px 0;
}

.solution-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 2px solid rgba(0, 217, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
    flex: 1;
    max-width: 240px;
    position: relative;
}

.solution-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.25);
    background: rgba(0, 217, 255, 0.05);
}

.solution-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.solution-item:hover .solution-icon {
    background: rgba(0, 217, 255, 0.2);
    transform: scale(1.1);
}

.solution-icon svg {
    width: 32px;
    height: 32px;
}

.solution-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.solution-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.chain-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 8px;
}

.chain-connector svg {
    opacity: 0.6;
    transition: all 0.3s ease;
}

.solution-item:hover + .chain-connector svg,
.chain-connector:hover svg {
    opacity: 1;
    transform: scale(1.1);
}

.solution-footer {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    font-style: italic;
}

/* Method Section */
.method-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.method-intro {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    line-height: 1.8;
}

.cycle-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Visual Steps Section */
.cycle-visual-section {
    width: 100%;
    padding: 40px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid rgba(0, 217, 255, 0.1);
}

.cycle-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) repeat(3, auto);
    gap: 16px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cycle-step {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 24px 16px;
    background: var(--bg-dark);
    border-radius: 12px;
    border: 2px solid rgba(0, 217, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
    min-height: 140px;
    justify-content: center;
}

.cycle-step:hover {
    border-color: var(--primary-color);
    background: rgba(0, 217, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.15);
}

.cycle-step.active {
    border-color: var(--primary-color);
    background: rgba(0, 217, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

.cycle-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    flex-shrink: 0;
    height: 24px;
}

.cycle-arrow svg {
    opacity: 0.6;
    width: 60px;
    height: 24px;
    transition: opacity 0.3s ease;
}

.cycle-step:hover + .cycle-arrow svg,
.cycle-arrow:hover svg {
    opacity: 1;
}

.step-number {
    width: 36px;
    height: 36px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 10px;
}

.cycle-step h3 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.cycle-step p {
    font-size: 11px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Detail Cards */
.cycle-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cycle-detail-card {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    scroll-margin-top: 120px;
}

.cycle-detail-card:hover {
    border-color: rgba(0, 217, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 217, 255, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 32px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.05) 0%, rgba(0, 255, 136, 0.05) 100%);
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.card-number {
    font-size: 32px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 50px;
}

.card-title-group h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.card-subtitle {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
}

.card-body {
    padding: 32px;
}

.card-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.card-objective,
.card-result {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 20px;
    border-radius: 10px;
    line-height: 1.5;
}

.card-objective {
    background: rgba(0, 217, 255, 0.06);
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.card-result {
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.summary-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.summary-icon svg {
    width: 20px;
    height: 20px;
}

.summary-content {
    flex: 1;
}

.summary-content strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.summary-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.card-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 24px;
}

.card-content-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.card-content-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-content-item li {
    padding: 2px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.card-content-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
}


/* How We Work Section */
.how-we-work-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.work-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.work-step {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    transition: all 0.3s;
}

.work-step-main {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.work-step-combined {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.work-step:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
}


.consultoria-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    flex: 1;
}

.consultoria-section {
    display: flex;
    flex-direction: column;
}

.consultoria-section h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.consultoria-section-subtitle {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.consultoria-section ul {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
    flex: 1;
}

.consultoria-section li {
    padding: 2px 0;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    line-height: 1.4;
}

.consultoria-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.consultoria-section-result {
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
}


.work-step h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.work-step-subtitle {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 24px;
}

.work-step-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.work-step-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.work-step-content li {
    padding: 2px 0;
    color: var(--text-secondary);
    padding-left: 24px;
    position: relative;
    line-height: 1.4;
}

.work-step-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.work-step-result {
    padding: 16px;
    background: rgba(0, 217, 255, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    margin-top: 24px;
    color: var(--text-primary);
}

/* Comparison Section */
.comparison-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-column {
    padding: 40px;
    border-radius: 16px;
}

.comparison-column.negative {
    background: rgba(255, 77, 77, 0.1);
    border: 2px solid rgba(255, 77, 77, 0.3);
}

.comparison-column.positive {
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid rgba(0, 255, 136, 0.3);
}

.comparison-column h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 32px;
    text-align: center;
}

.comparison-column ul {
    list-style: none;
    padding: 0;
}

.comparison-column li {
    padding: 2px 0;
    font-size: 18px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.4;
}

.comparison-column li svg {
    flex-shrink: 0;
}

/* For Whom Section */
.for-whom-section {
    padding: 100px 0;
    background: var(--bg-darker);
}

.for-whom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.for-whom-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    text-align: center;
    transition: all 0.3s;
}

.for-whom-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
}

.for-whom-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.for-whom-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.for-whom-card p {
    color: var(--text-secondary);
}

.for-whom-footer {
    text-align: center;
    padding: 24px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.for-whom-footer p {
    font-size: 18px;
    color: var(--text-secondary);
}

/* Commitment Section */
.commitment-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.commitment-item {
    text-align: center;
    padding: 32px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    transition: all 0.3s;
}

.commitment-item:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.2);
}

.commitment-icon {
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.commitment-icon svg {
    width: 48px;
    height: 48px;
}

.commitment-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.commitment-item p {
    color: var(--text-secondary);
}

/* Final CTA Section */
.final-cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0A1A2E 0%, #162B4A 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.final-cta-content {
    position: relative;
    z-index: 1;
}

.final-cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.final-cta-subtitle {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.final-cta-tagline {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.final-cta-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-style: italic;
}

.btn-large {
    padding: 20px 48px;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-image-placeholder {
        height: 400px;
    }

    .faq-content {
        grid-template-columns: 1fr;
    }

    .gallery-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .btn-avaliacao {
        padding: 10px 16px;
        font-size: 14px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-features {
        flex-direction: column;
        gap: 16px;
    }

    .cta-content h2,
    .contact-info h2,
    .section-title {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .comparison {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .comparison-side.negative {
        border-right: none;
        border-bottom: 1px solid rgba(255, 77, 77, 0.2);
    }

    .comparison-side.positive {
        border-left: none;
        border-top: 1px solid rgba(0, 255, 136, 0.2);
    }

    .solution-chain {
        flex-direction: column;
        gap: 24px;
    }

    .chain-connector {
        transform: rotate(90deg);
        padding: 8px 0;
    }

    .solution-item {
        max-width: 100%;
        width: 100%;
    }

    .cycle-container {
        gap: 40px;
    }

    .cycle-visual-section {
        padding: 24px 20px;
    }

    .cycle-details {
        gap: 24px;
    }

    .cycle-steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cycle-arrow {
        transform: rotate(90deg);
        padding: 8px 0;
    }

    .cycle-step {
        width: 100%;
        min-width: auto;
        min-height: auto;
    }

    .cycle-arrow svg {
        width: 40px;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px 24px;
    }

    .card-number {
        font-size: 28px;
        min-width: auto;
    }

    .card-title-group h3 {
        font-size: 20px;
    }

    .card-body {
        padding: 24px;
    }

    .card-summary-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card-objective,
    .card-result {
        padding: 16px 18px;
    }

    .summary-icon svg {
        width: 18px;
        height: 18px;
    }

    .summary-content strong {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .summary-content p {
        font-size: 13px;
    }

    .card-content-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .work-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .consultoria-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .for-whom-grid {
        grid-template-columns: 1fr;
    }

    .commitment-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 24px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-cta,
    .contact-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 28px;
    }

    .final-cta-content h2 {
        font-size: 32px;
    }

    .final-cta-subtitle {
        font-size: 24px;
    }

    .solution-chain {
        flex-direction: column;
        gap: 20px;
    }

    .chain-connector {
        transform: rotate(90deg);
        padding: 8px 0;
    }

    .solution-item {
        max-width: 100%;
        min-width: auto;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .modal-content {
        padding: 24px 20px;
        max-width: 100%;
        max-height: 98vh;
        padding: 24px;
    }
}

/* Diagnóstico Page Styles */
.diagnostico-section {
    padding: 120px 0 80px;
    background: var(--bg-dark);
    min-height: calc(100vh - 200px);
}

.diagnostico-header {
    text-align: center;
    margin-bottom: 60px;
}

.diagnostico-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #FFFFFF 0%, #00FF88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.diagnostico-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.progress-bar {
    width: 100%;
    max-width: 600px;
    height: 8px;
    background: var(--bg-card);
    border-radius: 4px;
    margin: 0 auto 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00D9FF 0%, #00FF88 100%);
    width: 14.28%;
    transition: width 0.3s ease;
    border-radius: 4px;
}

.progress-text {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.diagnostico-form {
    max-width: 900px;
    margin: 0 auto;
}

.form-section {
    display: none;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    margin-bottom: 32px;
}

.form-section.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.section-header p {
    font-size: 16px;
    color: var(--text-secondary);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    background: var(--bg-dark);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: #FF4D4D;
}

/* Scale Questions */
.scale-questions {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.scale-question {
    padding: 24px;
    background: var(--bg-dark);
    border-radius: 12px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.3s;
}

.scale-question.error {
    border-color: #FF4D4D;
    background: rgba(255, 77, 77, 0.05);
}

.scale-question label:first-child {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.scale-options {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
}

.scale-options input[type="radio"] {
    display: none;
}

.scale-options label {
    flex: 1;
    padding: 12px;
    text-align: center;
    background: var(--bg-card);
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 16px;
}

.scale-options input[type="radio"]:checked + label,
.scale-options label:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Select Questions / Radio Questions */
.select-questions {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.radio-questions {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.select-question {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.select-question label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.select-question select {
    padding: 12px 16px;
    background: var(--bg-dark);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}

.select-question select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

.select-question select.error {
    border-color: #FF4D4D;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
}

.form-navigation .btn {
    min-width: 150px;
}

@media (max-width: 768px) {
    .diagnostico-header h1 {
        font-size: 32px;
    }

    .diagnostico-subtitle {
        font-size: 18px;
    }

    .form-section {
        padding: 24px 20px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .scale-options {
        gap: 8px;
    }

    .scale-options label {
        padding: 10px 8px;
        font-size: 14px;
    }

    .form-navigation {
        flex-direction: column;
    }

    .form-navigation .btn {
        width: 100%;
    }
}

/* Radio Questions (substituindo selects) */
.radio-question {
    padding: 24px;
    background: var(--bg-dark);
    border-radius: 12px;
    border: 1px solid rgba(0, 217, 255, 0.1);
    transition: all 0.3s;
}

.radio-question.error {
    border-color: #FF4D4D;
    background: rgba(255, 77, 77, 0.05);
}

.radio-question label:first-child {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.radio-options {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
}

.radio-options input[type="radio"] {
    display: none;
}

.radio-options label {
    flex: 1;
    padding: 12px;
    text-align: center;
    background: var(--bg-card);
    border: 2px solid rgba(0, 217, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 16px;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radio-options input[type="radio"]:checked + label,
.radio-options label:hover {
    background: rgba(0, 217, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 217, 255, 0.2);
}

@media (max-width: 768px) {
    .radio-options {
        flex-direction: column;
        gap: 8px;
    }
    
    .radio-options label {
        width: 100%;
        min-height: 48px;
        font-size: 14px;
    }
}

/* Resultado Page Styles */
.resultado-section {
    padding: 120px 0 80px;
    background: var(--bg-dark);
    min-height: calc(100vh - 200px);
}

.loading-animation {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
}

.loading-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-top: 32px;
    margin-bottom: 8px;
}

.loading-content p {
    color: var(--text-secondary);
    font-size: 18px;
}

.loading-spinner {
    margin: 0 auto;
}

.spinner-circle {
    stroke-dasharray: 220;
    stroke-dashoffset: 220;
    animation: spinnerRotate 2s linear infinite;
}

@keyframes spinnerRotate {
    0% {
        stroke-dashoffset: 220;
        transform: rotate(0deg);
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -220;
        transform: rotate(360deg);
    }
}

.resultado-header {
    text-align: center;
    margin-bottom: 60px;
}

.resultado-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.resultado-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #FFFFFF 0%, #00FF88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.resultado-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
}

.score-geral {
    margin-bottom: 60px;
}

.score-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.score-card h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.score-circle {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
}

.score-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.score-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
}

.score-percent {
    font-size: 24px;
    color: var(--text-secondary);
}

.score-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.area-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    opacity: 0;
    transform: translateY(30px);
}

.area-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.area-header h3 {
    font-size: 20px;
    color: var(--text-primary);
    font-weight: 700;
}

.area-score {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
}

.area-thermometer {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.thermometer-container {
    width: 40px;
    height: 200px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(0, 217, 255, 0.3);
    flex-shrink: 0;
}

.thermometer-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0 0 18px 18px;
    transition: height 1.5s ease-out;
}

.thermometer-labels {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 200px;
    font-size: 12px;
    color: var(--text-secondary);
    padding: 0;
    align-items: flex-start;
}

.thermometer-labels span {
    line-height: 1;
}

.area-analysis {
    text-align: center;
}

.area-nivel {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.area-descricao {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.analise-section {
    margin-bottom: 60px;
}

.analise-section h2 {
    font-size: 36px;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-align: center;
}

.analise-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.analise-item {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    display: flex;
    gap: 24px;
    opacity: 0;
    transform: translateX(-30px);
}

.analise-item.critico {
    border-left: 4px solid #FF4D4D;
}

.analise-item.potencial {
    border-left: 4px solid #00D9FF;
}

.analise-item.nexos {
    border-left: 4px solid #00FF88;
}

.analise-icon {
    flex-shrink: 0;
}

.analise-text h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.analise-text p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.analise-text ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.analise-text li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.analise-text li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.analise-text .destaque {
    background: rgba(0, 255, 136, 0.1);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #00FF88;
    color: var(--text-primary);
    font-weight: 600;
    margin-top: 16px;
}

.potencial-nexo {
    margin-bottom: 60px;
}

.potencial-nexo h2 {
    font-size: 36px;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-align: center;
}

.potencial-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.potencial-item {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    text-align: center;
}

.potencial-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.potencial-item h3 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.potencial-item p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cta-final {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 255, 136, 0.1) 100%);
    padding: 60px 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 217, 255, 0.2);
    text-align: center;
}

.cta-final h2 {
    font-size: 36px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.cta-final p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

@media (max-width: 768px) {
    .resultado-header h1 {
        font-size: 32px;
    }
    
    .score-card {
        padding: 24px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .analise-item {
        flex-direction: column;
    }
    
    .potencial-content {
        grid-template-columns: 1fr;
    }
    
    .cta-final {
        padding: 40px 24px;
    }
    
    .cta-final h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

