:root {
    /* Colors */
    --primary: #0EA5E9;
    /* Sky Blue */
    --primary-dark: #0284C7;
    --secondary: #0F172A;
    /* Slate 900 */
    --secondary-light: #334155;
    /* Slate 700 */
    --bg-light: #F8FAFC;
    /* Slate 50 */
    --white: #ffffff;

    --text-main: #1E293B;
    --text-muted: #64748B;

    --border: #E2E8F0;

    /* Spacing */
    --container: 1100px;
    --header-height: 70px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Raleway', sans-serif;
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
    gap: 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.text-highlight {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 6px -1px rgba(14, 165, 233, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--border);
    background-color: transparent;
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--white);
    background-color: #0EA5E9;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.full-width {
    width: 100%;
}

/* Header */
.header {
    height: var(--header-height);
    background-color: #10161C;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.header.scrolled {
    background-color: #10161c7a;
    box-shadow: none;
}

.benefits-header p {
    margin-bottom: 24px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    display: flex;
}

/* Hero Section */
.hero {
    margin-top: var(--header-height);
    padding: 80px 0;
    background-image: url('https://images.unsplash.com/photo-1600607686527-6fb886090705?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 100%);
    z-index: 1;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content {
    color: var(--white);
}

.hero-content h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.25rem;
    color: #CBD5E1;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(14, 165, 233, 0.2);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(14, 165, 233, 0.5);
}

.hero-features {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #E2E8F0;
    font-weight: 500;
}

.feature-item i {
    color: var(--primary);
    width: 20px;
    height: 20px;
}

/* Hero Form */
.hero-form-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hero-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--secondary);
}

.hero-form-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--secondary-light);
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
}



.full-width {
    width: 100%;
}



/* Hero Section */
.hero {
    margin-top: var(--header-height);
    padding: 80px 0;
    background-image: url('outras imagens/fundo header.png');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 100%);
    z-index: 1;
    backdrop-filter: blur(3px);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content {
    color: var(--white);
}

.hero-content h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.25rem;
    color: #CBD5E1;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: rgba(14, 165, 233, 0.2);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(14, 165, 233, 0.5);
}

.hero-features {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #E2E8F0;
    font-weight: 500;
}

.feature-item i {
    color: var(--primary);
    width: 20px;
    height: 20px;
}

/* Hero Form */
.hero-form-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hero-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--secondary);
}

.hero-form-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--secondary-light);
    margin-bottom: 6px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-header {
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
}


/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.service-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.service-icon {
    width: 48px;
    height: 48px;
    background-color: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 8px;
}

.service-card h4 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin: 0;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Benefits Section */
.benefits {
    background-color: var(--secondary);
    color: var(--white);
}

.benefits .section-header h2 {
    color: var(--white);
}

.benefits .section-header p {
    color: #94A3B8;
}

.benefits-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.benefits-header {
    position: sticky;
    top: 100px;
}

.benefits-header h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.benefits-header p {
    color: var(--white);
    font-size: 1.1rem;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.benefit-content h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.benefit-content p {
    color: #CBD5E1;
    font-size: 1rem;
}

/* Materials Carousel */
.materials-section {
    background-color: var(--white);
    overflow: hidden;
    padding: 60px 0;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-container::before,
.carousel-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.carousel-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.carousel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    flex-shrink: 0;
}

.carousel-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.carousel-item span {
    font-weight: 600;
    color: var(--secondary);
    text-align: center;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Move half way because content is duplicated */
}

/* Gallery (Mosaic) */
.gallery {
    background-color: var(--bg-light);
}

.gallery-grid {
    column-count: 3;
    column-gap: 16px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Final CTA Section */
.final-cta {
    background-color: var(--secondary);
    color: var(--white);
    padding: 80px 0;
}

.final-cta-grid {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
    align-items: center;
}

.final-cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 1.1rem;
    color: #CBD5E1;
    margin-bottom: 30px;
}

.cta-list {
    list-style: none;
    margin-bottom: 30px;
}

.cta-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.footer-contact {
    column-gap: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-contact a {
    color: #CBD5E1;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.2s;
    justify-content: center;
}

.footer-contact a:hover {
    color: var(--primary);
}

.copyright {
    color: #64748B;
    font-size: 0.875rem;
    border-top: 1px solid #334155;
    padding-top: 30px;
    margin-top: 30px;
    min-width: 100%;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-features {
        align-items: center;
    }

    .hero-form-wrapper {
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }

    .benefits-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-header {
        position: static;
        text-align: center;
    }

    .final-cta-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-list {
        display: inline-block;
        text-align: left;
    }

    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .gallery-grid {
        column-count: 1;
    }

    .footer-contact {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        justify-content: center;
        min-width: 100%;
    }

    /* Hero responsivo */
    .hero {
        min-height: 500px;
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
    }

    /* FAQ responsivo */
    .faq-item {
        padding: 20px;
    }

    .faq-item h3 {
        font-size: 1.1rem;
    }

    /* Carousel responsivo */
    .carousel-btn {
        display: none;
    }

    .testimonials-carousel {
        gap: 0;
    }

    .testimonial-card {
        padding: 20px;
        min-height: 200px;
    }

    .carousel-dots {
        margin-top: 20px;
    }
}

/* Testimonials Section */
.testimonials {
    background-color: var(--white);
    padding: 80px 0;
}

/* Testimonials Carousel */
.testimonials-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.testimonials-track-container {
    overflow: hidden;
    flex: 1;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 250px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.stars {
    color: #F59E0B;
    /* Amber 500 */
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-main);
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--secondary);
    font-size: 1rem;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.google-icon {
    width: 24px;
    height: 24px;
}

.author-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

/* FAQ Section */
.faq {
    background-color: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.faq-item h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3::before {
    content: "?";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer Section */
.footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 60px 0 30px;
    align-items: center;
    justify-content: center;
    gap: 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.footer h2 {
    min-width: 100%;
    color: var(--white);
}