/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

:root {
    --font-title: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar.scrolled {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

/* Navbar on white sections */
.navbar.on-white-section {
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar.on-white-section .nav-logo h2,
.navbar.on-white-section .nav-logo span,
.navbar.on-white-section .nav-link {
    color: #1a1a1a;
}

.navbar.on-white-section .nav-link::after {
    background-color: #1a1a1a;
}

.navbar.on-white-section .nav-toggle span {
    background-color: #1a1a1a;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
    color: #ffffff;
}

.nav-logo span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    display: block;
    margin-top: -0.3rem;
    color: #ffffff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    background: linear-gradient(to right, #A78BFA 0%, #E879F9 100%);
}


.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title,
.hero-subtitle,
.hero-description {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.hero-title {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ffffff;
    cursor: pointer;
    transition: var(--transition-smooth);
    transform: none;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.section-ebook .btn-primary {
    border: 2px solid #1a1a1a;
    background-color: transparent;
    color: #1a1a1a;
    transition: var(--transition-smooth);
    opacity: 1;
}

.btn-primary:hover {
    color: #ffffff;
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.2);
}

.section-ebook .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    color: #000;
    background-color: transparent;
}

.btn-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Sections */
.section {
    padding: 6rem 2rem;
    position: relative;
    background-color: #ffffff;
}

.section-alt {
    background: linear-gradient(135deg, #F472B6 0%, #FB7185 25%, #F87171 50%, #FB923C 75%, #FBBF24 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
}

.section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(244, 114, 182, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(251, 113, 133, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.section-alt .container {
    position: relative;
    z-index: 1;
}

.section-alt .section-title {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-alt .section-title::after {
    background-color: #ffffff;
}

/* CTA Section Overrides */
.cta-section {
    background: #ffffff;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title,
.cta-subtitle,
.cta-text {
    text-align: center;
    color: #1a1a1a;
}

.cta-subtitle {
    margin: 25px 0 50px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #1a1a1a;
    transition: var(--transition-smooth);
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Specialties Section */
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.specialty-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid #ffffff;
    border-radius: 4px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.specialty-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.specialty-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.specialty-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: var(--transition-smooth);
}

.specialty-card:hover .specialty-icon {
    transform: scale(1.1);
}

.specialty-icon svg {
    width: 100%;
    height: 100%;
}

.specialty-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
    line-height: 1.3;
}

.btn-saiba-mais {
    margin-top: auto;
    padding: 0.6rem 1.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 4px;
}

.btn-saiba-mais:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    padding: 2rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: transparent;
    border-radius: 4px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s;
    display: flex;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(244, 114, 182, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0.5rem;
    color: #ffffff;
    transition: var(--transition-smooth);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.modal-close:hover {
    background: rgba(244, 114, 182, 1);
    transform: rotate(90deg);
}

.modal-body {
    display: flex;
    width: 100%;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
}

.modal-left {
    flex: 1;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,
    #F773A3 0%,     /* ponta esquerda, rosa vibrante */
    #F773A3 65%,    /* mantém rosa dominante até 65% */
    #F97398 95%,    /* transição suave para rosa-avermelhado */
    #F97398 100%    /* ponta direita */
    );
}

.modal-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.modal-left-content {
    position: relative;
    z-index: 1;
}

.modal-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 700;
}

.modal-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
}

.modal-left ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.modal-left ul li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.modal-left ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.5rem;
}

.modal-right {
    flex: 1;
    background-color: #ffffff;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.modal-right h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.modal-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
    max-width: 100%;
}

.modal-help-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.modal-help-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
}

.modal-help-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #F472B6;
    font-weight: bold;
    font-size: 1.2rem;
}

.modal-cta-text {
    margin-bottom: 1.5rem !important;
}

.modal-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 350px;
}

.modal-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    width: 100%;
}

.modal-contact-btn-primary {
    background-color: #F472B6;
    color: #ffffff;
}

.modal-contact-btn-primary:hover {
    background-color: #F87171;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 114, 182, 0.4);
}

.modal-contact-btn-secondary {
    background-color: #ffffff;
    color: #F472B6;
    border: 2px solid #F472B6;
}

.modal-contact-btn-secondary:hover {
    background-color: #F3F4F6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 114, 182, 0.2);
}

.modal-contact-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Ambiente Section */
.section-ambiente {
    background: linear-gradient(160deg, #FFF1F2 0%, #FDF4FF 55%, #FFF7ED 100%);
}

.ambiente-lead {
    max-width: 700px;
    margin: -2.5rem auto 3rem;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4B5563;
}

.ambiente-gallery {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 220px 220px;
    gap: 1.25rem;
}

.ambiente-photo {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(30px);
}

.ambiente-photo.visible {
    opacity: 1;
    transform: translateY(0);
}

.ambiente-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ambiente-photo.visible:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.ambiente-photo:hover img {
    transform: scale(1.06);
}

.ambiente-photo-main {
    grid-column: 1;
    grid-row: 1 / 3;
}

.ambiente-dots {
    display: none;
}

.ambiente-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.ambiente-dot.active {
    background-color: #A78BFA;
    transform: scale(1.3);
}

/* Localização Section */
.section-localizacao {
    background: linear-gradient(160deg, #A5B4FC 0%, #C4B5FD 50%, #F0ABFC 100%);
}

.section-localizacao .section-title {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-localizacao .section-title::after {
    background-color: #ffffff;
}

.localizacao-lead {
    max-width: 700px;
    margin: -2.5rem auto 2.5rem;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #ffffff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}

.localizacao-map {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    height: 420px;
}

.localizacao-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* E-book Section */
.ebook-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.ebook-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.ebook-lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1rem;
}

.ebook-info p {
    color: #4B5563;
    margin-bottom: 1rem;
}

.ebook-info .btn-primary {
    margin-top: 0.5rem;
}

/* Contact Section */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.contact-item {
    padding: 2rem;
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(30px);
}

.contact-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-item a {
    color: #1a1a1a;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.contact-item a:hover {
    border-bottom-color: #1a1a1a;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo h2 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
    color: #ffffff;
}

.footer-logo span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    display: block;
    margin-top: -0.3rem;
    color: #ffffff;
}

.footer-tagline {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 1rem 0 0;
    max-width: 320px;
}

.footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: #ffffff;
}

.footer-contact-item a,
.footer-contact-item span {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-contact-item a:hover {
    opacity: 0.8;
}

/* FOOTER: coluna e-book — remover este bloco inteiro para desfazer */
.footer-ebook h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-ebook-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 0.75rem;
}

.footer-ebook-link {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition-smooth);
}

.footer-ebook-link:hover {
    opacity: 0.8;
    border-bottom-color: #ffffff;
}
/* /FOOTER: coluna e-book */

.footer-copyright {
    text-align: center;
    font-size: 0.9rem;
    margin: 2rem 0 0 0;
    font-weight: 300;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Floating Buttons */
.floating-btn {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
    z-index: 999;
    text-decoration: none;
    cursor: pointer;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.floating-btn svg {
    width: 24px;
    height: 24px;
}

.scroll-top {
    bottom: 8rem;
    background-color: #1a1a1a;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.whatsapp-btn {
    background-color: #25D366;
}

.whatsapp-btn:hover {
    background-color: #1EBE57;
}

/* Animations */
.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-delay {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.fade-in-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.fade-in-delay-3 {
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
/* Tablet / Small Laptop Adjustments */
@media (max-width: 992px) {
    .specialties-grid {
        gap: 1rem;
    }

    .ambiente-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 240px 200px 200px;
    }

    .ambiente-photo-main {
        grid-column: 1 / 3;
        grid-row: 1;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: var(--transition-smooth);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .specialty-card {
        padding: 1.25rem 1rem;
    }

    .specialty-icon {
        width: 50px;
        height: 50px;
    }

    .specialty-card h3 {
        font-size: 1rem;
    }

    .btn-saiba-mais {
        padding: 0.5rem 1.25rem;
        font-size: 0.9rem;
    }

    .modal-content {
        max-width: 95%;
        margin: 1rem;
        flex-direction: column;
    }

    .modal-body {
        flex-direction: column;
        min-height: auto;
    }

    .modal-left {
        padding: 2rem 1.5rem;
    }

    .modal-left h2 {
        font-size: 1.5rem;
    }

    .modal-right {
        padding: 2rem 1.5rem;
    }

    .modal-right h3 {
        font-size: 1.5rem;
    }

    .ambiente-lead {
        margin-top: -1.5rem;
    }

    .localizacao-lead {
        margin-top: -1.5rem;
    }

    .localizacao-map {
        height: 300px;
    }

    .ambiente-gallery {
        display: flex;
        grid-template-columns: unset;
        grid-template-rows: unset;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 1.5rem;
        margin: 0 -1.5rem;
    }

    .ambiente-gallery::-webkit-scrollbar {
        display: none;
    }

    .ambiente-photo {
        flex: 0 0 82%;
        height: 280px;
        scroll-snap-align: center;
    }

    .ambiente-photo-main {
        grid-column: unset;
        grid-row: unset;
    }

    .ambiente-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1.5rem;
    }

}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    
    .scroll-top {
        bottom: 6rem;
    }
}

/* Small Mobile Adjustments */
@media (max-width: 480px) {
    .specialties-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-btn {
        right: 1rem;
        bottom: 1rem;
        width: 50px;
        height: 50px;
    }
}
