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

body {
    font-family: 'Assistant', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    font-weight: normal;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Bitter', serif;

    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.25rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 50;
    height: 64px;
    display: flex;
    align-items: center;
}

article {
    /* margin: 3rem 0; */
}

.active {
    color: #ff7f56;
    font-weight: bold;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 70px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ff7f56;
    font-size: 1.25rem;
    font-weight: bold;
}

.logo svg {
    width: 120px;
    height: 32px;
    margin-right: 8px;
}

nav {
    display: flex;
    gap: 24px;
}

nav a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff7f56;
}

/* Hero Section */
.hero {
    background: #F8F4FD;
    padding: 40px 0;
    border-radius: 0 0 40px 40px;
    border-bottom: 1px solid gainsboro;
    max-width: 1380px;
    margin: 0 auto;
}

/* @media (max-height: 901px) {
    .hero {
        min-height: 96vh;
    }
} */

.hero-content {
    display: grid;
    grid-template-columns: 1fr 56%;
    gap: 48px;
    align-items: top;
    /* min-height: 80vh; */

}

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

.hero-text h1 {
    font-family: 'Bitter', serif;
    font-size: 3.5rem;
    font-weight: normal;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #413560;
}

.hero-text p {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-survey {
    align-content: center;
}

.badge {
    display: inline-block;
    background: #dbeafe;
    color: #413560;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 16px;
    max-width: fit-content;
}

.cta-buttons {
    display: flex;
    gap: 31px;
    margin: 40px 0 32px 0;
    justify-content: center;
}

.btn {
    padding: 12px 24px;
    border-radius: 88px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #ff7f56;
    color: white;
}


.btn-primary:hover {
    background: #413560;
}

.btn-outline {
    background: transparent;
    color: #374151;
    border: 1px solid #d1d5db;
}

.btn-outline:hover {
    background: #F8F4FD !important;
    color: #374151 !important;
}

.hero-stats {
    display: flex;
    gap: 24px;
    font-size: 0.875rem;
    color: #6b7280;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    /* width: 100%; */
    /* height: 300px; */
    /* object-fit: cover; */
    /* border-radius: 12px; */
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
}

/* Features Section */
.features {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

h2,
.section-header h2 {
    font-family: 'Bitter', serif;
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 16px;
    color: #413560;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

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

.feature-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: border-color 0.3s;
}

.feature-card:hover {
    border-color: #bfdbfe;
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: #ff7f56;
    margin: 0 auto 16px;
}

.feature-card h3 {
    font-family: 'Bitter', serif;
    font-size: 1.25rem;
    font-weight: normal;
    margin-bottom: 8px;
    color: #413560;
}

.feature-card p {
    color: #6b7280;
}



/* Subjects Section */
.subjects {
    padding: 80px 0;
    background: #F8F4FD;
    border-radius: 40px;
    border-bottom: 1px solid gainsboro;
}

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

.subject-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.subject-card h3 {
    color: #ff7f56;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.subject-list {
    list-style: none;
}

.subject-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.875rem;
}

.check-icon {
    width: 16px;
    height: 16px;
    color: #10b981;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 48px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Bitter', serif;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: #413560;
}

.about-text p {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 32px;
}

.about-list {
    list-style: none;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.about-list h4 {
    font-weight: 600;
    margin-bottom: 4px;
}

.about-list p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.about-image img {
    width: 100%;
    /* height: 300px; */
    object-fit: cover;
    border-radius: 12px;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    /* background: #eff6ff; */
}

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

.testimonial-card {
    background: rgba(249, 249, 249, 0.516);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid gainsboro;
    /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.star {
    width: 16px;
    height: 16px;
    color: #fbbf24;
    fill: currentColor;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 16px;
    color: #374151;
}

.testimonial-author {
    font-weight: 600;
}

.testimonial-grade {
    font-size: 0.875rem;
    color: #6b7280;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: #ff7f56;
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.cta p {
    font-size: 1.25rem;
    color: #bfdbfe;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.email-form {
    display: flex;
    gap: 8px;
    max-width: 400px;
    margin: 0 auto 16px;
}

.email-input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.btn-secondary {
    background: white;
    color: #ff7f56;
}

.btn-secondary:hover {
    background: #F8F4FD;
}

.form-note {
    font-size: 0.75rem;
    color: #bfdbfe;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

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

.contact-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.contact-icon {
    width: 32px;
    height: 32px;
    color: #ff7f56;
    margin: 0 auto 16px;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.contact-card p {
    color: #6b7280;
}

/* Footer */
footer {
    background: #F8F4FD;
    border-top: 1px solid #e5e7eb;
    padding: 24px 0;
    margin-top: auto;
}

.blog-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin: 3rem 0;
}

.blog-list {

   display: flex;
   flex-direction: column;
   gap: 3rem;
   
}


.table-of-contents {
    margin-left: 2rem;
    position: sticky;
    top: 80px;
    align-self: start;
}

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

.footer-text {
    font-size: 0.75rem;
    color: #6b7280;
}

.footer-nav {
    display: flex;
    gap: 24px;
}

.footer-nav a {
    font-size: 0.75rem;
    color: #6b7280;
    text-decoration: none;
}

.footer-nav a:hover {
    text-decoration: underline;
}



ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
    /* color: #6b7280; */
    /* font-size: 1.25rem; */

}

ul li {
    margin-bottom: 10px;
    color: #413560;
    /* font-size: 1.25rem; */
    list-style-type: none;
    display: flex;
    align-items: start;
    gap: 10px;
}

/* profissional simple table */

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    margin-top: 20px;
}

table th {
    /* background-color: #f0f0f0; */
    font-family: 'Bitter', serif;
    padding: 10px;
    text-align: left;

}

table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid gainsboro;
}

table tr:last-child td {
    border-bottom: none;
}

table tr {
    /* background-color: #f0f0f0; */
    padding: 10px;
    text-align: left;
}

table td {
    padding: 10px;
    text-align: left;
}


/* Benefits Section */
.benefits {
    background: #ff7f56;
    color: white;
    padding: 80px 0 80px 0;
    position: relative;
    border-radius: 0 0 40px 40px;
}



.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-item .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Hide on mobile utility class */
.hide-on-mobile {
    display: block;
}

.hide-on-wide-screen {
    display: none;
}

/* Form styling - ensure consistency across all form elements */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Assistant', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: white;
    transition: border-color 0.3s, box-shadow 0.3s;
    appearance: none; /* Remove default styling */
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Focus states for form elements */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #ff7f56;
    box-shadow: 0 0 0 3px rgba(255, 127, 86, 0.1);
}

/* Custom dropdown arrow for select elements */
select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23374151' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

/* Hover states */
input[type="text"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
input[type="password"]:hover,
select:hover,
textarea:hover {
    border-color: #ff7f56;
}

/* Disabled states */
input[type="text"]:disabled,
input[type="email"]:disabled,
input[type="tel"]:disabled,
input[type="password"]:disabled,
select:disabled,
textarea:disabled {
    background-color: #f9fafb;
    color: #9ca3af;
    cursor: not-allowed;
}

/* Form labels */
label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #374151;
    font-size: 0.875rem;
}

.response-card {
    text-align: left;
    padding: 40px;
    border: 1px solid color(srgb 0.8663 0.8463 0.9027);
    border-radius: 12px;
    margin: 10px -38px;
    background: white;
    color: #f8956e;
}

@media (min-width: 768px) and (max-width: 1198px) {
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .response-card {
        margin: 10px 5px;
    }

    .hide-on-mobile {
        display: none !important;
    }

    .hide-on-wide-screen {
        display: block !important;
    }

    .hero {
        height: auto;
        padding-top: 10px;
    }

    .hero-content {
        grid-template-columns: none !important;
        gap: 8px !important;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 12px;
    }

    nav {
        display: none;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 12px;
    }

    .btn-primary {
        padding: 12px 12px;
    }

    .btn-outline {
        padding: 12px 12px;
    }
}