/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0d7377;
    --primary-dark: #0a5d61;
    --primary-light: #14a085;
    --secondary-color: #14a085;
    --accent-color: #32d9cb;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    padding-top: 80px; /* Espaço para o header fixo */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
    transform: translateY(0);
}

.header.hidden {
    transform: translateY(-100%);
}

@media (max-width: 768px) {
    .header {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
}

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

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition);
}

.logo-img:hover {
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.nav-menu a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d7377 0%, #14a085 100%);
    background-image: url('../images/back-hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-white);
    text-align: center;
    padding: 4rem 0;
    overflow: hidden;
    margin-top: 0;
    padding-top: calc(4rem + 80px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 115, 119, 0.7); /* Overlay com cor primária para manter identidade visual */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-quote {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.85;
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--text-white);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--primary-color);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-icon {
    font-size: 1.2rem;
}

/* Atendimento 24h */
.atendimento-24h {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 3rem 0;
    text-align: center;
}

.atendimento-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.atendimento-content > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.atendimento-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp,
.btn-phone {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
}

.btn-whatsapp {
    background: #25d366;
    color: var(--text-white);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

.btn-phone {
    background: var(--text-white);
    color: var(--primary-color);
}

.btn-phone:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Diferenciais */
.diferenciais {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.diferencial-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.diferencial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.diferencial-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.diferencial-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    transition: var(--transition);
}

.diferencial-card:hover .diferencial-icon img {
    transform: scale(1.1);
}

.diferencial-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.diferencial-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Sobre */
.sobre {
    padding: 5rem 0;
}

.sobre-content {
    max-width: 900px;
    margin: 0 auto;
}

.sobre-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.sobre-destaque {
    font-size: 1.2rem !important;
    font-weight: 500;
    color: var(--primary-color) !important;
    padding: 2rem;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
    margin: 2rem 0 !important;
}

.sobre-unidades {
    text-align: center;
    font-weight: 600;
    color: var(--primary-color) !important;
    font-size: 1.3rem !important;
    margin-top: 2rem !important;
}

/* Unidades */
.unidades {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.unidade-item:last-child {
    grid-column: 1 / -1;
    max-width: 100%;
}

@media (max-width: 900px) {
    .unidades-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .unidade-item:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
}

.unidade-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.unidade-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.unidade-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
}

.unidade-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: var(--transition);
}

.unidade-item:hover .unidade-icon img {
    transform: scale(1.1);
}

.unidade-item h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
}

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

.unidades-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Nossas Unidades Carousel */
.nossas-unidades {
    padding: 5rem 0;
    background: var(--bg-light);
}

.unidades-carousel {
    position: relative;
    max-width: 1000px;
    margin: 3rem auto 0;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.unidades-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.unidades-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    transform: translateX(0);
}

.unidade-card-slide {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    padding: 0 15px;
}

.unidade-card {
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.unidade-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.unidade-card-header {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-white);
}

.unidade-tipo {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.unidade-feminina {
    background: var(--bg-white);
    color: #ff6b9d;
    border: 2px solid #ff6b9d;
}

.unidade-masculina {
    background: var(--bg-white);
    color: #4a90e2;
    border: 2px solid #4a90e2;
}

.unidade-card-header h3 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-white);
}

.unidade-card-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.unidade-card-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.unidade-card-images img:hover {
    transform: scale(1.05);
    z-index: 1;
    position: relative;
}

.unidades-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.unidades-carousel-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.unidades-carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.unidades-carousel-prev {
    left: 20px;
}

.unidades-carousel-next {
    right: 20px;
}

.unidades-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.unidade-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.unidade-indicator.active,
.unidade-indicator:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Método */
.metodo {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0d7377 0%, #14a085 100%);
    color: var(--text-white);
}

.metodo-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.metodo-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.metodo-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    opacity: 0.95;
}

/* Remoção */
.remocao {
    padding: 5rem 0;
}

.remocao-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.remocao-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.remocao-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-light);
}

/* Depoimentos */
.depoimentos {
    padding: 5rem 0;
    background: var(--bg-light);
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

.depoimentos-carousel {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    transform: translateX(0);
}

.depoimento-slide {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
}

.depoimento-card {
    background: var(--bg-white);
    padding: 0;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
    overflow: hidden;
    margin: 0 auto;
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
}

.depoimento-content {
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.depoimento-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    max-height: 600px;
    display: block;
    object-fit: contain;
    border-radius: 15px;
    box-sizing: border-box;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.carousel-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.indicator.active,
.indicator:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Contato */
.contato {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(135deg, #0d7377 0%, #14a085 100%);
    color: var(--text-white);
    overflow: hidden;
}

.contato-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.contato .section-header h2 {
    color: var(--text-white);
}

.contato .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.contato-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

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

.contato-item {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.contato-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.contato-item-whatsapp {
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid rgba(37, 211, 102, 0.4);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.2);
}

.contato-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contato-item h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contato-item-whatsapp h3 {
    color: #25d366;
}

.contato-label {
    color: #666666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.contato-item-whatsapp .contato-label {
    color: #ff6b6b;
    font-weight: 600;
}

.contato-link {
    display: block;
    color: var(--primary-dark);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition);
    font-size: 1.2rem;
    font-weight: 600;
}

.contato-item-whatsapp .contato-link {
    color: #25d366;
}

.contato-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.contato-item-whatsapp .contato-link:hover {
    color: #20ba5a;
}

.contato-cta {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contato-cta-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 500;
    color: var(--text-white);
}

.contato-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp-cta {
    background: #25d366;
    color: var(--text-white);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-cta:hover {
    background: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.btn-phone-cta {
    background: var(--text-white);
    color: var(--primary-color);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-phone-cta:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-icon {
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--text-white);
    padding: 2rem 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    color: var(--text-white);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .unidades-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .unidade-item:last-child {
        grid-column: 1 / -1;
    }

    .contato-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .metodo-content,
    .remocao-content {
        padding: 0 20px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
        max-width: 150px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: var(--transition);
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        min-height: 70vh;
        padding: 2.5rem 0;
        padding-top: calc(2.5rem + 70px);
        margin-top: 0;
    }

    .hero-content {
        padding: 0 15px;
    }

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

    .btn {
        width: 100%;
        justify-content: center;
    }

    .atendimento-24h {
        padding: 2.5rem 0;
    }

    .atendimento-content h3 {
        font-size: 1.5rem;
    }

    .atendimento-content > p {
        font-size: 1rem;
    }

    .atendimento-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 15px;
    }

    .btn-whatsapp,
    .btn-phone {
        width: 100%;
        text-align: center;
    }

    .diferenciais,
    .sobre,
    .unidades,
    .metodo,
    .remocao,
    .depoimentos {
        padding: 3.5rem 0;
        overflow-x: hidden;
    }

    .depoimentos .container {
        padding: 0;
        max-width: 100%;
    }

    .section-header {
        margin-bottom: 2rem;
        padding: 0 15px;
    }

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

    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
    
    .unidades-grid {
        grid-template-columns: 1fr;
    }
    
    .unidade-item:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .depoimentos-carousel {
        max-width: 100%;
        padding: 0 15px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .nossas-unidades {
        padding: 3.5rem 0;
    }

    .unidades-carousel {
        max-width: 100%;
        padding: 0;
        margin: 2rem 0 0;
    }

    .unidade-card-slide {
        padding: 0;
    }

    .unidade-card {
        max-width: 100%;
        border-radius: 0;
    }

    .unidade-card-header {
        padding: 1.5rem;
    }

    .unidade-card-header h3 {
        font-size: 1.5rem;
    }

    .unidade-card-images {
        grid-template-columns: 1fr;
    }

    .unidade-card-images img {
        height: 200px;
    }

    .unidades-carousel-btn {
        width: 40px;
        height: 40px;
    }

    .unidades-carousel-prev {
        left: 10px;
    }

    .unidades-carousel-next {
        right: 10px;
    }

    .depoimentos-carousel {
        max-width: 100%;
        width: 100%;
        padding: 0;
        margin: 2rem 0 0;
    }

    .carousel-container {
        width: 100%;
        max-width: 100vw;
    }

    .depoimento-slide {
        width: 100%;
        max-width: 100vw;
    }

    .depoimento-card {
        max-width: 100%;
        width: 100%;
        border-radius: 0;
        margin: 0;
    }

    .depoimento-content {
        width: 100%;
        max-width: 100%;
    }

    .depoimento-img {
        max-width: 100%;
        width: 100%;
        height: auto;
        max-height: none;
        border-radius: 0;
    }

    .contato {
        padding: 3.5rem 0;
    }

    .contato-content {
        padding: 0 15px;
    }

    .contato-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contato-item {
        padding: 2rem 1.5rem;
    }

    .contato-icon {
        font-size: 2.5rem;
    }

    .contato-item h3 {
        font-size: 1.3rem;
    }

    .contato-link {
        font-size: 1.1rem;
    }

    .contato-cta {
        padding: 2rem 1.5rem;
    }

    .contato-cta-text {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .contato-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-whatsapp-cta,
    .btn-phone-cta {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        padding: 1rem 0;
    }

    .logo-img {
        height: 35px;
        max-width: 120px;
    }

    .hero {
        min-height: 60vh;
        padding: 2rem 0;
        padding-top: calc(2rem + 70px);
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .hero-quote {
        font-size: 1rem;
    }

    .atendimento-content h3 {
        font-size: 1.3rem;
    }

    .atendimento-content > p {
        font-size: 0.95rem;
    }

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

    .section-subtitle {
        font-size: 0.95rem;
    }

    .diferencial-card,
    .unidade-item {
        padding: 1.5rem;
    }

    .diferencial-icon img,
    .unidade-icon img {
        width: 60px;
        height: 60px;
    }

    .diferencial-card h3,
    .unidade-item h3 {
        font-size: 1.1rem;
    }

    .sobre-content p {
        font-size: 1rem;
    }

    .sobre-destaque {
        font-size: 1.1rem !important;
        padding: 1.5rem !important;
    }

    .metodo-content h2,
    .remocao-content h2 {
        font-size: 1.8rem;
    }

    .metodo-content p,
    .remocao-content p {
        font-size: 1rem;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .unidades-carousel-btn {
        width: 35px;
        height: 35px;
    }

    .unidades-carousel-prev {
        left: 5px;
    }

    .unidades-carousel-next {
        right: 5px;
    }

    .unidades-carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .unidade-card-images img {
        height: 180px;
    }

    .depoimentos-carousel {
        margin: 2rem 0 0;
    }

    .depoimento-card {
        max-width: 100%;
        width: 100%;
        border-radius: 0;
        margin: 0;
    }

    .depoimento-img {
        max-width: 100%;
        width: 100%;
        height: auto;
        max-height: none;
        border-radius: 0;
    }

    .contato-item {
        padding: 1.5rem 1rem;
    }

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

    .contato-item h3 {
        font-size: 1.2rem;
    }

    .contato-link {
        font-size: 1rem;
    }

    .contato-cta {
        padding: 1.5rem 1rem;
    }

    .contato-cta-text {
        font-size: 1rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }
}

/* Responsive - Extra Small */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

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

.diferencial-card,
.unidade-item,
.depoimento-card {
    animation: fadeInUp 0.6s ease-out;
}

