/* CSS Variables - Design System */
:root {
    --background: 0 0% 100%;
    --foreground: 222.2 84% 4.9%;
    --card: 0 0% 100%;
    --card-foreground: 222.2 84% 4.9%;
    --primary: 222.2 47.4% 11.2%;
    --title: 214.15 60.75% 20.98%;
    --foreground: 214.15 60.75% 20.98%;
    --primary: 42.58 50% 48.63%;
    --primary-foreground: 210 40% 98%;
    --secondary: 210 40% 96.1%;
    --secondary-foreground: 222.2 47.4% 11.2%;
    --muted: 210 40% 96.1%;
    --muted-foreground: 215.4 16.3% 46.9%;
    --accent: 210 40% 96.1%;
    --accent-foreground: 222.2 47.4% 11.2%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;
    --border: 214.3 31.8% 91.4%;
    --input: 214.3 31.8% 91.4%;
    --ring: 222.2 84% 4.9%;
    --radius: 0.5rem;

    --gradient-hero: linear-gradient(135deg, hsl(215 28% 17%) 0%, hsl(213 93% 25%) 100%);
    --gradient-primary: linear-gradient(135deg, hsl(201 96% 45%) 0%, hsl(201 96% 55%) 100%);
    --shadow-soft: 0 4px 12px hsl(0 0% 0% / 0.1);
    --shadow-elegant: 0 10px 30px hsl(201 96% 45% / 0.3);
      --shadow-elegant: 0 10px 30px hsl(var(--primary) / 0.3);
    --shadow-glow: 0 0 40px hsl(201 96% 55% / 0.4);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

      --success: 142 76% 45%;
    --success-foreground: 0 0% 100%;

     --trust: 213 93% 25%;
    --trust-foreground: 0 0% 100%;
    --trust-foreground:  214.15 60.75% 20.98%;
}

.dark {
    --background: 215 28% 17%;
    --foreground: 0 0% 95%;
    --card: 215 25% 20%;
    --card-foreground: 0 0% 95%;
    --primary: 201 96% 45%;
    --primary: 42.58 50% 48.63%;
    --primary-foreground: 0 0% 100%;
    --primary-glow: 201 96% 55%;
    --secondary: 200 15% 35%;
    --secondary-foreground: 0 0% 95%;
    --muted: 215 25% 25%;
    --muted-foreground: 215 15% 65%;
    --accent: 142 76% 45%;
    --accent-foreground: 0 0% 100%;
    --destructive: 0 75% 55%;
    --destructive: 42.58 50% 48.63%;
    --destructive-foreground: 0 0% 100%;
    --border: 215 25% 30%;
    --input: 215 25% 30%;
    --ring: 201 96% 45%;
    --trust: 213 93% 25%;
    --trust-foreground: 0 0% 100%;
    --success: 142 76% 45%;
    --success-foreground: 0 0% 100%;

    /* Custom gradients and effects */
    --gradient-hero: linear-gradient(135deg, hsl(215 28% 17%) 0%, hsl(213 93% 25%) 100%);
    --gradient-primary: linear-gradient(135deg, hsl(201 96% 45%) 0%, hsl(201 96% 55%) 100%);
    --shadow-soft: 0 4px 12px hsl(0 0% 0% / 0.1);
    --shadow-elegant: 0 10px 30px hsl(201 96% 45% / 0.3);
      --shadow-elegant: 0 10px 30px hsl(var(--primary) / 0.3);
    --shadow-glow: 0 0 40px hsl(201 96% 55% / 0.4);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    /*  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; */
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
}

button {
    font-family: 'Raleway', sans-serif;
}

h1,
h2 {
    font-size: 300% !important;
    color: hsl(var(--foreground));
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-destructive {
    color: hsl(var(--destructive));
}

/* Animations */
@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 20px hsl(var(--primary) / 0.3);
    }

    100% {
        box-shadow: 0 0 40px hsl(var(--primary) / 0.6);
    }
}

@keyframes glow-svg {
    0% {
        filter: drop-shadow(0 0 10px hsl(var(--primary) / 0.3));
        color: white
    }

    100% {
        filter: drop-shadow(0 0 10px hsl(var(--primary) / 0.8));
        color: white
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background-color: hsl(var(--background) / 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid hsl(var(--border));
}

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

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

.logo-icon {
    height: 2rem;
    width: 2rem;
    color: hsl(var(--primary));
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
}

.logo-image {
    height: 3rem;
    width: auto;
}

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

.nav-link {
    color: hsl(var(--foreground));
    text-decoration: none;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: hsl(var(--primary));
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 40px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: hsl(var(--trust) / 0.1);
}

.hero-container {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-content {
    max-width: 64rem;
    margin: 0 auto;
    animation: fade-in 1s ease-out;
}

.hero-icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hero-icon {
    height: 5rem;
    width: 5rem;
    color: hsl(var(--primary));
    animation: glow-svg 2s infinite alternate;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-highlight {
    color: hsl(var(--primary));
}

.hero-text {
    font-size: 1.25rem;
    color: hsl(0 0% 100% / 0.9);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    animation: slide-up 1s ease-out 0.5s both;
}

.hero-button:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.button-icon {
    height: 1.25rem;
    width: 1.25rem;
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8rem;
    background: linear-gradient(to top, hsl(var(--background)), transparent);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #F8FAFC 100%);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }

    .hero-text {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fade-in 1s ease-out;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--title));
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.benefits .section-title {
    color: hsl(214.15deg 60.75% 20.98%)
}
.section-subtitle {
    font-size: 1.25rem;
    color: hsl(var(--title));
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-text {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }

    .section-subtitle {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3.75rem;
    }
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: hsl(var(--muted) / 0.5);
}

.features-grid {
    display: grid;
    gap: 2rem;
    max-width: 96rem;
    margin: 0 auto;
}

.feature-card {
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    animation: slide-up 1s ease-out;
}

.feature-card:hover {
    box-shadow: var(--shadow-elegant);
    transform: translateY(-4px);
}

.feature-icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon-bg {
    padding: 1rem;
    background-color: hsl(var(--primary) / 0.1);
    border-radius: 50%;
    height: 4rem;
    width: 4rem;
    color: hsl(var(--primary));
}

.feature-icon {
    height: 2rem;
    width: 2rem;
    color: hsl(var(--primary));
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.feature-text {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    /* background-color: hsl(var(--background)); */
    background: hsl(var(--background));
}

.benefits-list {
    max-width: 80rem;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: hsl(var(--success) / 0.05);
    border: 1px solid hsl(var(--success) / 0.2);
    border-radius: var(--radius);
    padding: 1.5rem;
    animation: slide-up 1s ease-out;
    align-items: center;
}

.benefit-check {
    flex-shrink: 0;
    margin-top: 0.25rem;
    padding: 0.5rem;
    background-color: hsl(var(--success));
    border-radius: 50%;
    height: 36px;
    width: 36px;

}

.benefit-check svg {
    height: 1.25rem;
    width: 1.25rem;
    color: hsl(var(--success-foreground));
}

.benefit-text {
    font-size: 1.125rem;
    /* color: hsl(var(--foreground)); */
    line-height: 1.6;
    color: hsl(214.15deg 60.75% 20.98%);
}

/* Stats Section */
.stats {
    padding: 5rem 0;
    background-color: hsl(var(--muted) / 0.3);
}

.stats-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-item {
    text-align: center;
    animation: slide-up 1s ease-out;
}

.stat-icon {
    height: 3rem;
    width: 3rem;
    color: hsl(var(--primary));
    margin: 0 auto 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: hsl(var(--primary));
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    color: hsl(var(--muted-foreground));
}

.testimonials {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial {
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.testimonial-text {
    font-style: italic;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: hsl(var(--primary));
}

.section-cta {
    margin-top: 80px;
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cta-button:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* About Section */
.about {
    padding: 5rem 0;
    /* background: linear-gradient(to top, hsl(0deg 0% 100%), #ffffffe6);
    background-color:white; */
    background-color: hsl(var(--background));
}


.about-content {
    max-width: 64rem;
    margin: 0 auto;
}

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

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: hsl(var(--foreground));
    line-height: 1.7;
}



.values-grid {
    display: grid;
    gap: 2rem;
}

.value-item {
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.value-text {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


.about-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    align-items: center;
}

.about-image {
    flex: 1 1 40%;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    /*  box-shadow: 0 4px 20px rgba(0,0,0,0.2); */
}

.about-text {
    flex: 1 1 60%;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    flex: 1 1 30%;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    /*   box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Responsivo para telas menores */
@media (max-width: 768px) {
    .about-grid {
        flex-direction: column;
    }

    .value-item {
        flex: 1 1 100%;
    }
}

/* Copyright Section */
.copyright {
    font-size: 70%;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.copyright p,
.copyright a {
    color: hsl(var(--foreground) / 0.6);
    text-decoration: none;
}
/* Parallax Section */
.parallax-section {
    position: relative;
    height: 100vh;
    background-image: url('img/bg-01.jpg');
    /* substitua pelo caminho da imagem */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.parallax-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* ajuste a opacidade conforme necessário */
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    color: white;
}

.parallax-section .section-title {
    color: white;
}

/* .parallax-content h1 {
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
} */

@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll;
    }

    .parallax-content h1 {
        font-size: 2rem;
        padding: 0 1rem;
    }
}

/* Contact Form */
.contact {
    padding: 5rem 0;
    background-color: hsl(var(--muted) / 0.3);
}

.form-container {
    max-width: 48rem;
    margin: 0 auto;
}

.contact-form {
    background-color: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: hsl(var(--foreground));
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid hsl(var(--input));
    border-radius: var(--radius);
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: hsl(var(--ring));
    box-shadow: 0 0 0 3px hsl(var(--ring) / 0.1);
}

.radio-group {
    display: flex;
    gap: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.radio-text {
    color: hsl(var(--foreground));
}

.form-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
    border: none;
    border-radius: var(--radius);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.form-submit:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

/* Final CTA */
.final-cta {
    position: relative;
    padding: 5rem 0;
    background: var(--gradient-hero);
    overflow: hidden;
}

.final-cta-overlay {
    position: absolute;
    inset: 0;
    background-color: hsl(var(--trust) / 0.2);
}

.final-cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
    animation: fade-in 1s ease-out;
}

.final-cta-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.final-cta-icon svg {
    height: 4rem;
    width: 4rem;
    color: hsl(var(--primary));
    animation: glow-svg 2s infinite alternate;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.final-cta-text {
    font-size: 1.25rem;
    color: hsl(0 0% 100% / 0.9);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.final-cta-highlight {
    font-size: 1.25rem;
    color: hsl(var(--primary));
    font-weight: 600;
    margin-bottom: 2rem;
}

.final-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    animation: slide-up 1s ease-out 0.5s both;
}

.noanimation {
    animation: none;
}

.final-cta-button:hover {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .final-cta-title {
        font-size: 3rem;
    }

    .final-cta-text {
        font-size: 1.5rem;
    }

    .final-cta-highlight {
        font-size: 1.5rem;
    }
}

/* Carroussel */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.carousel-track {
    display: flex;
}

.carousel-slide {
    display: none;
    width: 100%;
}

.carousel-slide.active {
    display: block;
}

iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.arrow.left {
    left: 10px;
}

.arrow.right {
    right: 10px;
}


/* Footer */
.footer {
  /*   background-color: hsl(var(--trust)); */
    color: hsl(var(--trust-foreground));
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    height: 2rem;
    width: 2rem;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-description {
    color: hsl(var(--trust-foreground) / 0.8);
    line-height: 1.6;
}

.footer-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.footer-contact-icon {
    height: 1.25rem;
    width: 1.25rem;
}

.footer-licenses-text {
    color: hsl(var(--trust-foreground) / 0.8);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid hsl(var(--trust-foreground) / 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    color: hsl(var(--trust-foreground) / 0.6);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1.125rem;
    }
}


/* Video Section */
.vsl-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* A mágica da proporção 16:9 (9 dividido por 16 = 0.5625) */
  padding-top: 56.25%; 
}

.vsl-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* FAQ Section */
.faq {
      padding: 5rem 0;
      background-color: hsl(var(--muted) / 0.3);
    }
.faq-container {
      max-width: 48rem;
      margin: auto;
    }
    .faq-item ul {
        padding-left: 30px;
    }
    .faq-item {
      background: #fff;
      border: 1px solid #ddd;
      margin-bottom: 10px;
      border-radius: 5px;
    }
    .faq-question {
      padding: 15px;
      cursor: pointer;
      font-weight: bold;
      background-color: #eee;
    }
    .faq-answer {
      padding: 15px;
      display: none;
      border-top: 1px solid #ddd;
    }
