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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

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

/* Colors */
.text-purple {
    color: #7C3AED;
}

.text-purple-light {
    color: #A855F7;
}

.text-purple-deep {
    color: #5B21B6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.btn-outline {
    background: transparent;
    color: #7C3AED;
    border: 2px solid #7C3AED;
}

.btn-outline:hover {
    background: #7C3AED;
    color: white;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #333;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #7C3AED;
}

/* Navigation */
.nav-desktop {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #7C3AED;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7C3AED;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #7C3AED;
    cursor: pointer;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(124, 58, 237, 0.1);
}

.nav-mobile.active {
    display: flex;
}

.nav-link-mobile {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link-mobile:hover {
    color: #7C3AED;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #F8F4FF 0%, #F3E8FF 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-title {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.trust-dot {
    width: 8px;
    height: 8px;
    background: #7C3AED;
    border-radius: 50%;
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3) 0%, rgba(168, 85, 247, 0.2) 100%);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    min-width: 120px;
}

.badge-left {
    top: 20px;
    left: -20px;
}

.badge-right {
    bottom: 20px;
    right: -20px;
}

.badge-bottom-right {
    bottom: -20px;
    right: 20px;
}

.badge-top-left {
    top: -20px;
    left: 20px;
}

.badge-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #7C3AED;
    margin-bottom: 0.25rem;
}

.badge-text {
    font-size: 0.75rem;
    color: #666;
    font-weight: 600;
}

.team-avatars {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.avatar {
    width: 30px;
    height: 30px;
    background: #7C3AED;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

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

.section-title {
    color: #7C3AED;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.service-title {
    color: #333;
    margin-bottom: 1rem;
}

.service-description {
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.25rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '•';
    color: #7C3AED;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #7C3AED;
    font-size: 1.125rem;
}

.services-note {
    text-align: center;
    background: #F8F4FF;
    padding: 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #666;
}

.calendar-icon {
    font-size: 1.25rem;
}

/* Why Choose Section */
.why-choose {
    background: linear-gradient(135deg, #F8F4FF 0%, #F3E8FF 100%);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.reason-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.15);
}

.reason-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.reason-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.check-icon {
    color: #10B981;
    font-size: 1.25rem;
}

.reason-description {
    color: #666;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: #7C3AED;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-weight: 600;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.3);
}

.cta-title {
    color: white;
    margin-bottom: 1rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.cta-box .btn-primary {
    background: white;
    color: #7C3AED;
}

.cta-box .btn-primary:hover {
    background: #f8f9fa;
}

/* Testimonials Section */
.testimonials {
    background: white;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.star {
    color: #FCD34D;
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #7C3AED;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-name {
    font-weight: 700;
    color: #333;
}

.author-location {
    color: #666;
    font-size: 0.9rem;
}

.author-service {
    color: #7C3AED;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Testimonial Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E5E7EB;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #7C3AED;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #F8F4FF;
    padding: 1rem;
    border-radius: 0.5rem;
    color: #7C3AED;
    font-weight: 600;
}

/* About Section */
.about {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(168, 85, 247, 0.1) 100%);
}

.about-description {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.mission-box {
    background: #F8F4FF;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin: 2rem 0;
    border-left: 4px solid #7C3AED;
}

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

.mission-header i {
    color: #7C3AED;
    font-size: 1.25rem;
}

.mission-header h3 {
    color: #7C3AED;
    margin: 0;
}

.mission-text {
    color: #666;
    margin: 0;
}

.key-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 2rem 0;
}

.key-point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.key-point i {
    color: #10B981;
    font-size: 1.125rem;
}

/* Service Area Section */
.service-area {
    background: linear-gradient(135deg, #F8F4FF 0%, #F3E8FF 100%);
}

.service-area-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.area-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.15);
}

.area-card i {
    color: #7C3AED;
    font-size: 1.25rem;
}

.area-name {
    font-weight: 700;
    color: #333;
    margin-bottom: 0.25rem;
}

.area-details {
    font-size: 0.9rem;
    color: #666;
}

.contact-box {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-box h3 {
    color: #7C3AED;
    margin-bottom: 1rem;
}

.contact-box p {
    margin-bottom: 1.5rem;
}

.phone-link {
    color: #7C3AED;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
}

.phone-link:hover {
    text-decoration: underline;
}

.service-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-image-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.15);
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-image-content {
    padding: 1.5rem;
}

.service-image-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.service-image-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.service-image-footer {
    padding: 1rem 1.5rem;
    background: #F8F4FF;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.service-image-footer span:first-child {
    color: #666;
}

.service-image-footer span:last-child {
    color: #7C3AED;
    font-weight: 600;
}

/* FAQ Section */
.faq {
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.faq-item {
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #F8F4FF;
}

.faq-icon {
    color: #7C3AED;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: #666;
}

.faq-cta {
    text-align: center;
    background: #F8F4FF;
    padding: 3rem;
    border-radius: 1rem;
}

.faq-cta h3 {
    color: #7C3AED;
    margin-bottom: 1rem;
}

.faq-cta p {
    margin-bottom: 2rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #F8F4FF 0%, #F3E8FF 100%);
}

.contact-promise {
    color: #7C3AED;
    font-weight: 600;
    margin-top: 0.5rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-title {
    color: #7C3AED;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select { /* <--- ADICIONE AQUI */
    padding: 0.75rem;
    border: 2px solid #E5E7EB;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: white; /* Adicionado para consistência */
    font-family: 'Open Sans', sans-serif; /* Adicionado para consistência */
    color: #333; /* Adicionado para consistência */
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7C3AED;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-link {
    color: #7C3AED;
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

.hours p {
    margin-bottom: 0.25rem;
    color: #666;
}

.emergency {
    color: #7C3AED !important;
    font-weight: 600;
}

.contact-why-choose {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.why-choose-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.why-choose-header i {
    color: #7C3AED;
    font-size: 1.25rem;
}

.why-choose-header h4 {
    color: #7C3AED;
    margin: 0;
}

.why-choose-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.why-choose-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.why-choose-list i {
    color: #10B981;
    font-size: 1.125rem;
}

/* Footer */
.footer {
    background: #1F2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

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

.footer-description {
    color: #D1D5DB;
    font-size: 0.9rem;
}

.footer-title {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #A855F7;
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #D1D5DB;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item:hover {
    color: #A855F7;
}

.footer-contact-item i {
    color: #7C3AED;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9CA3AF;
    font-size: 0.9rem;
}

/* SMS Float */
.sms-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7C3AED 0%, #A855F7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.sms-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Typography */
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    /* Header */
    .nav-desktop,
    .cta-desktop {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Hero */
    .hero {
        padding: 6rem 0 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

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

    /* Reasons */
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .key-points {
        grid-template-columns: 1fr;
    }

    /* Service Area */
    .service-area-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Trust Badges */
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    /* Typography */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    /* Sections */
    section {
        padding: 3rem 0;
    }

    /* Hero */
    .hero {
        padding: 5rem 0 2rem;
    }

    .floating-badge {
        position: static;
        margin: 1rem auto;
        transform: none;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }

    /* Trust Badges */
    .trust-badges {
        grid-template-columns: 1fr;
    }

    /* WhatsApp */
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

.logo-img {
    height: 56px;
    width: auto;
    max-width: 64px;   /* Limite de largura */
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    object-fit: contain;
}

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

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #7C3AED;
    line-height: 1.1;
    white-space: nowrap;
}
@media (max-width: 480px) {
    .logo-img {
        height: 40px;
        max-width: 40px;
    }
}

.btn-secondary {
    background: transparent;
    color: #A855F7; /* Um roxo um pouco mais claro para diferenciar */
    border: 2px solid #A855F7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background: #A855F7;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}