@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ===============================================
   RESET E CONFIGURA��ES GLOBAIS
   =============================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #4b5563;
    background: linear-gradient(to right, #e8f5e9 0%, #fafaf8 15%, #fafaf8 85%, #e8f5e9 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===============================================
   HEADER E NAVEGA��O
   =============================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo do Header */
.nav-logo {
    display: flex;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
    color: #7fbe8b;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 0.5px;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-left ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu li a {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 0.5rem;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #7fbe8b;
    transition: width 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #4b5563;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.phone-cta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.phone-cta i {
    font-size: 1.5rem;
    color: #6b7280;
}

.phone-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.phone-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #6b7280;
}

.phone-number {
    font-weight: 700;
    font-size: 1.05rem;
    color: #4b5563;
}

/* ===============================================
   HERO SECTION
   =============================================== */
.hero-section {
    min-height: 88vh;
    max-height: 860px;
    padding: 7rem 3rem 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('img/imgfundosalafisio.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.15);
    transform-origin: center center;
    will-change: transform;
    z-index: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 250, 248, 0.75);
    backdrop-filter: blur(3px);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: flex-end;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInLeft 1s ease;
    padding-bottom: 3rem;
    align-self: center;
    position: relative;
    z-index: 10;
    padding-right: 1rem;
    margin-right: 0;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    color: #4b5563;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

.highlight {
    color: #7fbe8b;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
}

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

.btn {
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: #7fbe8b;
    color: white;
    box-shadow: 0 4px 15px rgba(127, 190, 139, 0.3);
}

.btn-primary:hover {
    background: #6aad76;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(127, 190, 139, 0.4);
}

.btn-secondary {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
    border: 2px solid rgba(107, 114, 128, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: rgba(107, 114, 128, 0.15);
    color: #4b5563;
    border-color: rgba(107, 114, 128, 0.3);
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: nowrap;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item i {
    font-size: 2.5rem;
    color: #7fbe8b;
}

.feature-item span {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    max-height: 80vh;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-wrapper {
    position: relative;
    overflow: visible;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.professional-image {
    width: auto;
    height: 78vh;
    max-height: 700px;
    display: block;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 2;
}

/* ===============================================
   SE��O DESTAQUES
   =============================================== */
.highlights-section {
    padding: 5rem 3rem;
    background: #f5f5f3;
    text-align: center;
}

.highlights-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4b5563;
    margin-bottom: 3rem;
}

.highlights-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.highlight-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.highlight-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.highlight-card:hover .highlight-image img {
    transform: scale(1.05);
}

.highlight-content {
    padding: 2rem 1.5rem;
    text-align: left;
    position: relative;
}

.highlight-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4b5563;
    margin-bottom: 0.8rem;
}

.highlight-content p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.highlight-link {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: #7fbe8b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.highlight-link:hover {
    background: #6aad76;
    transform: scale(1.1);
}

/* ===============================================
   SE��O SOBRE
   =============================================== */
.about-section {
    padding: 6rem 3rem;
    background: white;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.about-image img {
    width: 100%;
    display: block;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(127, 190, 139, 0.1) 0%, transparent 100%);
}

.about-label {
    display: inline-block;
    color: #7fbe8b;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.section-title--emphasis {
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    position: relative;
    display: inline-block;
    padding-bottom: 0.6rem;
}

.section-title--emphasis::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #7fbe8b, #a8d5b0);
    border-radius: 2px;
}

.about-section .section-title--emphasis::after {
    left: 0;
}

.services-section .section-title--emphasis {
    display: block;
}

.services-section .section-title--emphasis::after {
    left: 50%;
    transform: translateX(-50%);
}

.about-description {
    font-size: 1.05rem;
    color: #6b7280;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #7fbe8b;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.social-section {
    margin-top: 2rem;
}

.social-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: #f5f5f3;
    color: #7fbe8b;
    border-radius: 50%;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #7fbe8b;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(127, 190, 139, 0.3);
}

/* ===============================================
   SE��O DEPOIMENTOS
   =============================================== */
.testimonials-section {
    padding: 5rem 3rem;
    background: linear-gradient(135deg, #f5fef8 0%, #e8f5e9 50%, #f5fef8 100%);
    text-align: center;
    position: relative;
}

.testimonials-header {
    margin-bottom: 3.5rem;
}

.testimonials-label {
    display: inline-block;
    color: #7fbe8b;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.6rem;
}

.testimonials-section .section-title {
    text-align: center;
    margin-bottom: 0.8rem;
}

.testimonials-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    font-weight: 400;
}

.testimonials-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
    position: relative;
    border-top: 3px solid #7fbe8b;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(127, 190, 139, 0.18);
}

.testimonial-quote-icon {
    font-size: 2.2rem;
    color: #b2ddb9;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
}

.testimonial-stars i {
    font-size: 1rem;
    color: #f5a623;
}

.testimonial-content {
    font-size: 0.95rem;
    color: #5a6c7d;
    line-height: 1.75;
    flex: 1;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f4f0;
    margin-top: auto;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #edf7f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar i {
    font-size: 1.7rem;
    color: #7fbe8b;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.author-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #2c3e50;
}

.author-role {
    font-size: 0.8rem;
    color: #9ca3af;
    font-weight: 400;
}

/* ===============================================
   SE��O TRATAMENTOS
   =============================================== */
.services-section {
    padding: 6rem 3rem;
    background: white;
    text-align: center;
}

.services-section .section-title {
    margin-bottom: 3rem;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fdfb 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(127, 190, 139, 0.2);
    border-color: #7fbe8b;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7fbe8b 0%, #8bc99c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

/* ===============================================
   SE��O CONTATO
   =============================================== */
.contact-section {
    padding: 6rem 3rem;
    background: white;
}

.contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-label {
    display: inline-block;
    color: #7fbe8b;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.contact-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #4b5563;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

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

.contact-form-section {
    background: #f5f5f3;
    padding: 3rem;
    border-radius: 16px;
    box-sizing: border-box;
    width: 100%;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.form-row {
    width: 100%;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 0.8rem;
}

.form-group label i {
    font-size: 1.2rem;
    color: #7fbe8b;
}

.form-group input,
.form-group textarea {
    width: 100% !important;
    max-width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #4b5563;
    background: white;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7fbe8b;
    box-shadow: 0 0 0 4px rgba(127, 190, 139, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-form-submit {
    width: 100% !important;
    max-width: 100%;
    background: #7fbe8b;
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-sizing: border-box;
}

.btn-form-submit i {
    font-size: 1.5rem;
}

.btn-form-submit:hover {
    background: #6aad76;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(127, 190, 139, 0.3);
}

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

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.8rem;
    background: #f5f5f3;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #7fbe8b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-content h6 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #7fbe8b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.info-content p {
    font-size: 1rem;
    color: #4b5563;
    font-weight: 500;
    line-height: 1.6;
}

/* ===============================================
   RODAP�
   =============================================== */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 3rem 3rem 1.5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #7fbe8b;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #7fbe8b;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-section i {
    color: #7fbe8b;
    margin-right: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(127, 190, 139, 0.2);
    border-radius: 50%;
    color: #7fbe8b;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #7fbe8b;
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===============================================
   MENU HAMBURGER
   =============================================== */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1100;
    margin-left: 1rem;
}

.hamburger-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: #4b5563;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}
.hamburger-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    z-index: 998;
    border-top: 3px solid #7fbe8b;
    animation: slideDown 0.25s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.mobile-nav.open {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0.5rem 1.5rem 1rem;
}

.mobile-nav ul li a {
    display: block;
    padding: 1rem 0;
    text-decoration: none;
    color: #4b5563;
    font-weight: 600;
    font-size: 1.05rem;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-nav ul li:last-child a {
    border-bottom: none;
}

.mobile-nav ul li a:hover {
    color: #7fbe8b;
    padding-left: 0.5rem;
}

/* ===============================================
   RESPONSIVIDADE
   =============================================== */

/* --- TABLET GRANDE (max 1200px) --- */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .navbar {
        padding: 0 2rem;
    }
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* --- TABLET (max 992px) --- */
@media (max-width: 992px) {
    /* Nav mobile: logo � esquerda, hamburger � direita */
    .navbar {
        padding: 0 1.2rem;
        justify-content: space-between;
    }
    .nav-logo {
        display: flex;
    }
    .nav-left {
        display: none;
    }
    .nav-right {
        gap: 0;
    }
    .phone-cta {
        display: none;
    }
    .hamburger-btn {
        display: flex;
        margin-left: 0;
    }

    /* Hero - tablet */
    .hero-section {
        padding: 7rem 2rem 0;
        min-height: auto;
        max-height: none;
        align-items: center;
        overflow: visible;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        align-items: center;
        width: 100%;
    }
    .hero-image {
        order: -1;
        justify-content: center;
        max-height: none;
        overflow: visible;
        align-items: center;
    }
    .professional-image {
        height: auto;
        max-height: clamp(280px, 50vh, 520px);
        width: min(72vw, 420px);
        object-fit: contain;
        object-position: center bottom;
    }
    .hero-content {
        margin-right: 0;
        padding-bottom: 2rem;
        padding-right: 0;
        text-align: center;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-image {
        max-height: 380px;
        overflow: hidden;
    }
    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }
    .about-section {
        padding: 4rem 2rem;
    }
    /* T�tulo Sobre centralizado no mobile */
    .about-text {
        text-align: center;
    }
    .about-label {
        display: block;
        text-align: center;
    }
    .about-section .section-title {
        text-align: center;
    }
    .about-description {
        text-align: left;
    }
    .stat-item {
        align-items: center;
    }
    .social-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Highlights */
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .highlights-section {
        padding: 4rem 2rem;
    }

    /* Testimonials - grid 2 colunas */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-section {
        padding: 4rem 2rem;
    }

    /* Services - scroll horizontal */
    .services-section {
        padding: 4rem 2rem;
    }
    .services-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 1.2rem;
        padding-bottom: 1rem;
        scrollbar-width: thin;
        scrollbar-color: #7fbe8b #f0f0f0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .services-grid::-webkit-scrollbar {
        height: 6px;
    }
    .services-grid::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 3px;
    }
    .services-grid::-webkit-scrollbar-thumb {
        background: #7fbe8b;
        border-radius: 3px;
    }
    .service-card {
        flex: 0 0 78vw;
        max-width: 300px;
        scroll-snap-align: start;
    }
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .contact-section {
        padding: 4rem 2rem;
    }
    .contact-main-title {
        font-size: 2.2rem;
    }

    /* Footer */
    .footer {
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
        padding: 3rem 2rem 1.5rem !important;
    }
    .footer-content {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
        max-width: 1400px !important;
        margin: 0 auto !important;
        margin-bottom: 2rem !important;
        justify-content: unset !important;
    }
}

/* --- MOBILE (max 768px) --- */
@media (max-width: 768px) {
    /* Nav */
    .navbar {
        padding: 0 1.2rem;
    }

    /* Hero */
    .hero-section {
        padding: 6.5rem 1.2rem 1.5rem;
        min-height: auto;
        max-height: none;
        align-items: center;
        overflow: visible;
    }
    .hero-image {
        max-height: none;
        align-items: center;
        overflow: visible;
    }
    .professional-image {
        height: auto;
        max-height: clamp(240px, 46vh, 420px);
        width: min(86vw, 360px);
        object-fit: contain;
        object-position: center bottom;
    }
    .hero-title {
        font-size: 1.8rem;
        text-align: center;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        text-align: center;
        max-width: 34ch;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
    }
    .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .hero-content {
        text-align: center;
        padding: 1rem 0 2rem;
    }

    /* About */
    .about-section {
        padding: 3rem 1.2rem;
    }
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .stat-number {
        font-size: 1.8rem;
    }

    /* Highlights */
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    .highlights-title {
        font-size: 1.8rem;
    }
    .highlights-section {
        padding: 3rem 1.2rem;
    }

    /* Section title global */
    .section-title {
        font-size: 1.8rem;
    }

    /* Testimonials - carrossel horizontal */
    .testimonials-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 1rem;
        padding-bottom: 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #7fbe8b #f0f0f0;
    }
    .testimonials-grid::-webkit-scrollbar {
        height: 6px;
    }
    .testimonials-grid::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 3px;
    }
    .testimonials-grid::-webkit-scrollbar-thumb {
        background: #7fbe8b;
        border-radius: 3px;
    }
    .testimonial-card {
        flex: 0 0 80vw;
        max-width: 320px;
        scroll-snap-align: start;
        padding: 1.5rem 1.2rem;
    }
    .testimonials-section {
        padding: 3rem 1.2rem;
    }

    /* Services */
    .services-section {
        padding: 3rem 1.2rem;
    }
    .services-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 1rem;
        padding-bottom: 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .service-card {
        flex: 0 0 80vw;
        max-width: 280px;
        scroll-snap-align: start;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
    }
    .contact-section {
        padding: 3rem 1.2rem;
    }
    .contact-main-title {
        font-size: 1.8rem;
    }
    .contact-form-section {
        padding: 2rem 1.2rem;
        width: 100%;
        box-sizing: border-box;
    }
    .contact-info-section {
        width: 100%;
    }
    .modern-form {
        width: 100%;
    }
    .form-group input,
    .form-group textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Footer */
    .footer {
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
        padding: 2.5rem 1.2rem 1rem !important;
    }
    .footer-content {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        max-width: 100% !important;
        justify-content: unset !important;
    }
}

/* Correcoes finais para impedir interferencia de estilos legados no mobile atual */
@media (max-width: 992px) {
    body {
        background-image: none;
    }

    #formulario {
        width: 100%;
        max-width: 100%;
    }
}

/* --- CELULARES PEQUENOS (max 480px) --- */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
    .feature-item i {
        font-size: 1.8rem;
    }
    .feature-item span {
        font-size: 0.8rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .highlights-title {
        font-size: 1.5rem;
    }
    .about-stats {
        gap: 0.5rem;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .stat-label {
        font-size: 0.75rem;
    }
    .contact-main-title {
        font-size: 1.5rem;
    }
    .testimonials-carousel-wrapper {
        padding: 0 40px;
    }
    .carousel-btn {
        width: 34px;
        height: 34px;
        font-size: 1.3rem;
    }
    .about-description {
        font-size: 0.95rem;
    }
    .highlight-content h3 {
        font-size: 1.2rem;
    }
    .info-card {
        padding: 1.2rem 1rem;
    }
    .contact-form-section {
        padding: 1.5rem 1rem;
    }
    .footer-section h3 {
        font-size: 1.2rem;
    }
    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}

    .pagina1_esquerda_titulo {
       

        font-size: 2.5rem;
    }

    .destaque {

        opacity: 1rem;
        font-size: 1.5rem;
        color: #aaaaaa; 
    }

    .mensagem{
        color: #2b5c38;
        font-size: 1.5rem;
    }

    .pagina1_esquerda_paragrafo {

        font-size: 1.2rem;
        opacity: 1rem;
        color: #aaaaaa;
    }


    .pagina1_esquerda_buton {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #28a745;
        border-radius: 1rem;
        width: 10rem;
        height: 2rem;
        color: white;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        margin-top: 10px;
        text-decoration: none;
        

    }

        


    .img_pag1 {

     
        width: 38rem; /* Largura fixa */
        
         -webkit-mask-image: linear-gradient(
            to bottom,
            black 0%,
            black 30%,
            rgba(0,0,0,0.7) 50%,
            rgba(0,0,0,0.3) 70%,
            transparent 100%
        );
        mask-image: linear-gradient(
            to bottom,
            black 0%,
            black 30%,
            rgba(0,0,0,0.7) 50%,
            rgba(0,0,0,0.3) 70%,
            transparent 100%
        );
        
    }


    .Foto2 {

        width: 40rem;
        display: flex;
        justify-content: left;
    }

    .Central_pag_2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0rem 1rem 12rem 0rem;

    /* Fundo com manchas verdes e dissolvendo para branco */
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 128, 0, 0.3), transparent 60%),
        radial-gradient(circle at 70% 40%, rgba(34, 139, 34, 0.25), transparent 70%),
        radial-gradient(circle at 40% 80%, rgba(144, 238, 144, 0.25), transparent 60%),
        linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 50%),
        #a7cc9f;

    background-blend-mode: overlay, overlay, overlay, normal;
    
    /* Arredondamento da parte de baixo */
    clip-path: ellipse(130% 90% at 50% 100%);
}

    

    .conteudo_pagina_2 {

        display: flex;
        justify-content: center;
        align-items: center;
        padding: 12rem 1rem 0rem 0rem;
        gap: rem;
      
        background-repeat: no-repeat;
    }

    .conteudo_pagina_2_direita {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        
    }

    .destaque {
        color: #d4af7d;
      

    
    }


    
    .conteudo_pagina_2_titulo_direita {

        display: flex;
        text-align: left;
        font-size: 2rem;
        font-weight: 400; 
        color: #001304;
    }
    

    .conteudo_pagina_2_esquerda {
        display: flex;
        flex-direction: column;
        gap: 5rem;
        padding-left: 2rem;
        transform: translateY(-120px); /* <-- move a imagem 50px para cima */
    }
    
    .conteudo_pagina_2_direita {
        text-align: left;
        padding: 2rem 6rem;
        
    }

    .conteudo_pagina_2_central_icones_titulo{

        font-size: 1.5rem;
    }
    .conteudo_pagina_2_direita_informacao {
        font-size: 1.2rem;
        color: white;
        gap: 1rem   ;
    }

    .conteudo_pagina_2_central_icones i {
        font-size: 2.5rem;  /* Tamanho padr�o para todos os �cones */
        gap: 20rem;
    }

    .conteudo_pagina_2_central_icones {
        display: flex;
        flex-direction: row;
        gap: 1rem;
    }
    
    .conteudo_pagina_2_central_icones .bxl-instagram {
        font-size: 40px;  /* Tamanho espec�fico para o WhatsApp */
        background-color: #be3184;  /* Cor verde t�pica do WhatsApp */
        border-radius: 0.8rem;
        text-decoration: none;
    }


    

    .conteudo_pagina_2_central_icones .bxl-linkedin {
        font-size: 40px;  /* Tamanho espec�fico para o WhatsApp */
        background-color: #2079ff;  /* Cor verde t�pica do WhatsApp */
        border-radius: 0.8rem;
        text-decoration: none;
    }

    .conteudo_pagina_2_central_icones .bxl-whatsapp {
        font-size: 40px;  /* Tamanho espec�fico para o WhatsApp */
        background-color: #5eb623;  /* Cor verde t�pica do WhatsApp */
        border-radius: 0.8rem;
        text-decoration: none;
    }

    .Pagina_3_titulo  {
        display: flex;
        padding: 2rem;
        justify-content: center;
        font-size: 1.5rem;


    }

    .Central_cards{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 2rem 15rem;
        gap: 2rem;
         justify-content: center;
    }


    .Pagina_3_card {
        display: flex;
        flex-direction: column;
        width: 15rem;
        height: 15rem;
        padding: 20px;
        border-radius: 24px;
        background: rgba(184, 184, 184, 0.404);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px); /* Para Safari */
        border: 1px solid rgba(0, 0, 0, 0.3);
        color: #000000; /* Muda se o fundo for escuro ou claro */
        font-family: Arial, sans-serif;
        gap: 1rem;
        transform: scale(0.95);
        animation: aparecer 0.8s ease-out forwards;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
       
        
      }

     
      
     
      .Pagina_3_card:hover {
        transform: scale(1.03) translateY(-60px);
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        background-color: #64646483;
      }

    

    .Pagina_3_card_hader {
        display: flex ;
        flex-direction: row;
    }


    .Pagina_3_card_conteudo {

        font-size: 0.7rem;
    }

    .bxs-user {
        background-color: #c2c2c27a;
        border-radius: 0.5rem;
    }


    .Pagina4 {
        display: flex;
        padding: 2rem;
        justify-content: center;
        font-size: 2rem;

    }

    .Pagina4_servi�os {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* <- isso alinha horizontalmente */
    gap: 2rem;
    padding: 2rem 15rem ;
}

    .Pagina4_servi�o {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;

        width: 22rem;
        height: 17rem;
        background-color: #aaaaaa;
        gap: 0.1rem;
        font-size: 0.5rem;
        padding: srem;
        border-radius: 1rem;
        overflow: hidden;
        font-family: Arial, sans-serif;
         transform: scale(0.95) translateY(20px);
        opacity: 0;
        transition: transform 0.8s ease, opacity 0.8s ease;

    
    }

    .Pagina4_servi�o:hover {
        transform: scale(1.03) translateY(-10px);
        box-shadow: 0 8px 10px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        
      }

      .Pagina4_servi�o.ativo {
    transform: scale(1) translateY(0);
    opacity: 1;
    }

    .Pagina4_servi�o:hover {
        transform: scale(1.03) translateY(-10px);
        box-shadow: 0 8px 10px rgba(0, 0, 0, 0.2);
        cursor: pointer;
    }

    .consulta {
        width: 100%;
        height: 60%;
        
    }

    .Pagina4_card_titulo {
        font-size: 1rem;
        padding-left: 0.5rem;
    }

    .Pagina4_card_text {

        padding-left:0.5rem;
        font-size: 0.7rem;
    }

    .Central_Pagina5 {
        display: flex;
        flex-direction: row;
        background: 50% 50%;
        padding-bottom: 8rem;
        padding-top: 5rem;
    }

    .Pagina5_equerda {
        display: flex;
        flex-direction: column;
        padding: 10rem 8rem;
        width: 60%;

    }

    .Pagina5_titulo
    {
        display: flex;
        padding: 1rem;
        justify-content: center;
        font-size: 2.5rem;    
    }

    .Pagina5_Text {
        font-size: 1.5rem;
        padding: 0rem 5rem 0rem 8rem;
    }

    .Pagina5_Direita {
        display: flex;
        flex-direction: column;
        padding-top: 4rem;
        width: 20%;
        gap: 1rem;
       font-family: "Jersey 25";
            font-size: 1rem;
            font-weight: 400;
            padding-bottom: 3REM;
        align-items: center;
    }

    .Pagina4_feedback_titulo {

        padding-top: 1rem;
        padding-bottom: 2rem;
        text-align: center;
    }

    /* Neutraliza estilos antigos do formul�rio que conflitam com os novos */
    #formulario {
        background-color: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        gap: 0 !important;
        padding: 0 !important;
    }

    #nome,
    #telefone {
        width: 100% !important;
        max-width: 100% !important;
        background-color: white !important;
        border: 2px solid #e5e7eb !important;
        border-radius: 10px !important;
        padding: 1rem 1.2rem !important;
        font-size: 1rem !important;
        height: auto !important;
        box-sizing: border-box !important;
        color: #4b5563 !important;
    }

    #mensagem {
        width: 100% !important;
        max-width: 100% !important;
        background-color: white !important;
        border: 2px solid #e5e7eb !important;
        border-radius: 10px !important;
        padding: 1rem 1.2rem !important;
        font-size: 1rem !important;
        height: 9.375rem !important;
        box-sizing: border-box !important;
        color: #4b5563 !important;
    }


    

   @media screen and (max-width: 1024px) {
           
            .nav-cabecalho_menu {
                padding: 0rem 0rem;
                
            }
            .nav-cabecalho_menu_links {
                display: none;
            }
        
            .login-button {
                display: none;
            }
            .mobile-menu-icon {
                 display: block;
                position: absolute; /* importante para posicionar livremente */
                right: 1rem;         /* distancia da direita */
                top: 1rem;         /* distancia do topo */
                z-index: 1000;
            }
            .mobile-menu-icon button {
                background-color: #8b6f4e00;
                border: none;
                cursor: pointer;
                border-radius: 0.5rem;
            }
        
            .menu_mobile {
                display: none;
                flex-direction: column;
                text-align: center;
              
            }
        
            .menu_mobile.open {
                display: block;
            }

            .cabecalho_menu_mobile {
                display: flex;
                flex-direction: column;
                background-color: #1d1d1dbd;
                backdrop-filter: blur (10px);
                text-decoration: none;
                position: absolute;
                width: 100%;
                height: 100vh;
                gap: 1rem;
            }

            .botoes_mobile {

                text-decoration: none;
                color: rgb(255, 255, 255);
                font-size: 2rem;

            }

            .cabecalho_menu_mobile :hover {
                background-color: #444;
            }
        



            .cabecalho_menu {
                padding: 1rem;
                background-color: none;
              
            }
        
            .cabecalho_menu_Icons {
                display: none;
            }
            }
        
    
   /* Evita que elementos ultrapassem a largura da tela */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

@media (max-width: 992px) {
  body {
    background-image: url('img/Mobile back.png');
    background-size: 140%; /* Reduzido para n�o dar zoom exagerado */
    background-position: top;
    background-repeat: no-repeat;
  }

  .Central_pag_1 {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 0.1rem;
    padding: 0.1rem;
    padding-bottom: 5rem;
  }

  .img_pag1 {
    width: 100%;
    padding: 1rem 0;
  }

  .pagina1_esquerda {
    text-align: center;
    align-items: center;
  }

  .Foto2 {
    width: 100%;
    height: auto;
  }

  .conteudo_pagina_2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 1rem;
  }

  .conteudo_pagina_2_direita {
    padding: 1rem;
  }

  .conteudo_pagina_2_titulo_direita {
    display: flex;
    justify-content: center;
    font-size: 2.2rem !important;
  }

  .conteudo_pagina_2_esquerda {
    padding-left: 0;
    transform: translateY(0);
  }

  .conteudo_pagina_2_central_icones_titulo {
    display: flex;
    text-align: center;
    justify-content: center;
    font-size: 1.5rem !important;
  }

  .conteudo_pagina_2_central_icones {
    justify-content: center;
  }

  .Central_cards {
    padding: 2rem;
    justify-content: center;
    gap: 1rem;
  }

  .cabecalho_menu {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
  }

  .Pagina_3_card {
    width: 100%;
    height: auto;
  }

  .pagina1_esquerda_titulo {
    font-size: 2rem;
  }

  .pagina1_esquerda_paragrafo,
  .mensagem,
  .conteudo_pagina_2_titulo_direita,
  .conteudo_pagina_2_central_icones_titulo,
  .conteudo_pagina_2_direita_informacao {
    font-size: 1rem;
  }

  /* P�gina 5 - Fale comigo */
  .Pagina5_equerda {
    display: none;
  }

  .Central_Pagina5 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
  }

  .Pagina5_Direita {
    width: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

 #formulario {
  max-width: 420px;
  width: 90%;
  display: flex;
  flex-direction: column;
}


  
}
