/* Reset e variáveis */
:root {
    --primary-color: #b97387; /* Azul escuro - pode ajustar com base no logo */
    --secondary-color: #80bdff; /* Azul claro */
    --accent-color: #e78b7e; /* Azul médio */
    --text-color: #333;
    --light-text: #fff;
    --background-color: #f9f9f9;
    --border-color: #ddd;
    --success-color: #28a745;
    --error-color: #dc3545;
    --font-primary: 'Helvetica Neue', Arial, sans-serif;
    --transition: all 0.3s ease;
    --color1: #e78b7e;
    --color2: #eda89f;
    --color3: #f3c5bf;
    --color4: #f9e2df;
    --color5: #ffffff;
    --color7: #ffb3c8;
    --color8: #e89eb2;
    --color9: #d0889c;
    --color10: #b97387;
    --color11: #a15d71;
    --black: #000000;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: var(--color4);
    color: var(--color11);
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
    text-align: center;
    margin-left: -26px;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background-color: var(--accent-color);
}

p {
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--accent-color);
    color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.image-placeholder {
    background-color: #e9ecef;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    border-radius: 8px;
    color: #6c757d;
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 60px;
    width: auto;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

.menu-mobile {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(rgba(0, 91, 153, 0.8), rgba(0, 91, 153, 0.8)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--light-text);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease;
}

.hero h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 400;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.hero .btn {
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
}

/* Sobre */
.sobre-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.sobre-text {
    flex: 1;
    min-width: 300px;
}

.sobre-image {
    flex: 1;
    min-width: 300px;
}

.sobre-image .image-placeholder {
    min-height: 400px;
}

/* Especialidades */
.especialidades {
    background-color: #f0f8ff;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Qualificações */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-bottom: 50px;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    z-index: 10;
}

.timeline-content {
    width: 45%;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(odd) .timeline-content:before {
    content: '';
    position: absolute;
    top: 20px;
    left: -10px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    transform: rotate(45deg);
}

.timeline-item:nth-child(even) .timeline-content:before {
    content: '';
    position: absolute;
    top: 20px;
    right: -10px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    transform: rotate(45deg);
}

.date {
    display: block;
    font-size: 0.8rem;
    font-style: italic;
    color: #777;
    margin-top: 10px;
}

/* Galeria */
.galeria-filtro {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.filtro-btn {
    background: none;
    border: none;
    padding: 8px 20px;
    margin: 5px;
    cursor: pointer;
    font-weight: 500;
    border-radius: 30px;
    transition: var(--transition);
}

.filtro-btn:hover, .filtro-btn.active {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.galeria-item {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    height: 250px;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.galeria-item:hover img {
    transform: scale(1.1);
}

/* Avaliações */
.avaliacoes {
    background-color: #f0f8ff;
    text-align: center;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.google-badge i.fa-google {
    color: #4285F4;
    font-size: 2rem;
    margin-right: 15px;
}

.rating {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.rating i {
    color: #FBBC05;
    margin-right: 2px;
}

.rating span {
    font-weight: bold;
    margin-left: 5px;
}

#google-reviews {
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Contato */
.contato-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: 50%;
    transition: var(--transition);
}

.social-media a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(0, 160, 227, 0.2);
}

.maps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.map {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.map h4 {
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--light-text);
    margin-bottom: 0;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-links h3,
.footer-contato h3 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.footer-links h3:after,
.footer-contato h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.footer-contato p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contato p i {
    margin-right: 10px;
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #ccc;
}

.footer-bottom a {
    color: var(--accent-color);
}

#whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

#whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    font-size: 2rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

#whatsapp-float a:hover {
    transform: scale(1.1);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    section {
        padding: 60px 0;
    }
    .timeline:before {
        left: 40px;
    }
    .timeline-icon {
        left: 40px;
    }
    .timeline-content {
        width: calc(100% - 90px);
        margin-left: 90px !important;
    }
    .timeline-item:nth-child(odd) .timeline-content:before,
    .timeline-item:nth-child(even) .timeline-content:before {
        left: -10px;
        right: auto;
    }
}

@media (max-width: 768px) {
    header .container {
        padding: 10px 20px;
    }
    nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background-color: #fff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 20px 30px;
        transition: var(--transition);
        z-index: 1001;
    }
    nav.active {
        right: 0;
    }
    nav ul {
        flex-direction: column;
    }
    nav ul li {
        margin-left: 0;
        margin-bottom: 20px;
    }
    .menu-mobile {
        display: block;
        z-index: 1002;
    }
    .hero {
        padding: 150px 0 80px;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .sobre-content, .contato-content {
        flex-direction: column;
    }
    .timeline-content {
        width: calc(100% - 70px);
        margin-left: 70px !important;
    }
    .galeria-item {
        height: 200px;
    }
} 

.header-alt {
  background: var(--color1);
  color: var(--white);
  padding: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}
.header-info {
  flex: 1;
  margin-left: 2rem;
}
.header-info h1 {
  margin: 0;
  font-size: 2.2rem;
  color: var(--white);
}
.header-info h2 {
  margin: 0.2rem 0 0.5rem 0;
  font-size: 1.2rem;
  color: var(--color4);
}
.header-info p {
  margin: 0;
  font-size: 1rem;
  color: var(--color3);
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}
nav ul li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
nav ul li a:hover {
  color: var(--color7);
}
.menu-mobile {
  display: none;
}

.hero-alt {
    position: relative;
    min-height: 400px;
    width: 100vw;
    overflow: hidden;
    background: linear-gradient(90deg, var(--color2) 60%, var(--color3) 100%);
    padding: 0;
}
.hero-image-mosaic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    z-index: 1;
}
.mosaic-slice {
    flex: 1 1 0;
    height: 100%;
    overflow: hidden;
    position: relative;
    transition: z-index 0.3s;
    z-index: 1;
}
.mosaic-slice img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    transition: clip-path 0.5s cubic-bezier(0.4,0,0.2,1);
}
.slice-1 {
    clip-path: polygon(0 0, 80% 0, 60% 100%, 0% 100%);
    transition: clip-path 0.5s cubic-bezier(0.4,0,0.2,1);
}
.slice-2 {
    clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
    transition: clip-path 0.5s cubic-bezier(0.4,0,0.2,1);
}
.slice-3 {
    clip-path: polygon(40% 0, 100% 0, 100% 100%, 20% 100%);
    transition: clip-path 0.5s cubic-bezier(0.4,0,0.2,1);
}
.slice-4 {
    clip-path: polygon(60% 0, 100% 0, 100% 100%, 40% 100%);
    transition: clip-path 0.5s cubic-bezier(0.4,0,0.2,1);
}
.mosaic-slice:hover,
.mosaic-slice:focus {
    z-index: 2;
}
.mosaic-slice:hover.slice-1,
.mosaic-slice:focus.slice-1 {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.mosaic-slice:hover.slice-2,
.mosaic-slice:focus.slice-2 {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.mosaic-slice:hover.slice-3,
.mosaic-slice:focus.slice-3 {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.mosaic-slice:hover.slice-4,
.mosaic-slice:focus.slice-4 {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.hero-flex {
    height: 100%;
    min-height: 400px;
    width: 100vw;
    padding: 0;
    align-items: stretch;
    justify-content: stretch;
    gap: 0;
}

.hero-text {
  flex: 1;
}
.hero-text h1 {
  font-size: 2.5rem;
  color: var(--color11);
  margin-bottom: 0.5rem;
}
.hero-text h2 {
  font-size: 1.5rem;
  color: var(--color10);
  margin-bottom: 1rem;
}
.hero-text p {
  color: var(--color9);
  margin-bottom: 1.5rem;
}
.hero-image img {
  width: 260px;
  border-radius: 50%;
  border: 6px solid var(--color7);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.sobre-alt {
    background: var(--color5);
    padding: 3rem 0 0;
    position: relative;
    overflow: hidden;
}
.sobre-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images.jpeg') center center/cover no-repeat;
    filter: blur(10px);
    opacity: 0.7;
    z-index: 0;
}
.sobre-alt::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.7);
    z-index: 1;
}
.sobre-flex, .sobre-image {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
}
.sobre-text{
  display: flex;
  flex-direction: column;
}
.sobre-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sobre-image img {
    border: none !important;
    box-shadow: none !important;
    width: auto;
    height: 340px;
    max-width: 100%;
    border-radius: 18px;
    display: block;
    margin: 0 auto;
    background: none;
    position: relative;
    z-index: 2;
}
.sobre-image::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    width: 70%;
    height: 38px;
    background: rgba(0,0,0,0.18);
    filter: blur(12px);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}
.sobre-text h2 {
  color: var(--color11);
  margin-bottom: 1rem;
}
.sobre-text ul {
  margin: 1rem 0 0 0;
  color: var(--color10);
}

.especialidades-alt {
  background: var(--color4);
  padding: 3rem 0;
}
.cards-alt {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 992px) {
  .cards-alt {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .cards-alt {
    grid-template-columns: 1fr;
  }
}
.card-alt {
    background: var(--color5);
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 0;
    text-align: center;
    color: var(--color11);
    transition: box-shadow 0.2s;
    perspective: 1000px;
    height: 100%;
    min-height: 270px;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}
.card-alt-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
    transform-style: preserve-3d;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}
.card-alt:hover .card-alt-inner,
.card-alt:focus-within .card-alt-inner {
    transform: rotateY(180deg);
}
.card-alt-front, .card-alt-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.2rem;
    box-sizing: border-box;
}
.card-alt-front {
    z-index: 2;
    background: var(--color5);
}
.card-alt-back {
    background: var(--color8);
    color: var(--white);
    transform: rotateY(180deg);
    z-index: 1;
}
.card-alt-back h3 {
    color: var(--white);
    margin-bottom: 0.7rem;
}
.card-alt-back p {
    color: var(--white);
}

.qualificacoes-alt {
  background: var(--color5);
  padding: 3rem 0;
}
.timeline-alt {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}
.timeline-item-alt {
  display: flex;
  align-items: centerflex-start;
  gap: 1.2rem;
}
.timeline-icon-alt {
  background: var(--color7);
  color: var(--white);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.timeline-content-alt h3 {
  margin: 0 0 0.3rem 0;
  color: var(--color11);
}
.timeline-content-alt p, .timeline-content-alt span {
  color: var(--color9);
}

.galeria-alt {
  background: var(--color4);
  padding: 3rem 0;
}
.galeria-filtro-alt {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.filtro-btn-alt {
  background: var(--color7);
  color: var(--white);
  border: none;
  border-radius: 2rem;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s;
}
.filtro-btn-alt.active, .filtro-btn-alt:hover {
  background: var(--color8);
}
.galeria-grid-alt {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}
.galeria-item-alt {
  background: var(--color5);
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 0.5rem;
}
.image-placeholder-alt {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color8);
}

.avaliacoes-alt {
  background: var(--color5);
  padding: 3rem 0;
}
.avaliacoes-google-alt {
  background: var(--color4);
  border-radius: 1.2rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.google-badge-alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.rating-alt {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  color: var(--color7);
  font-size: 1.2rem;
}
.btn, .btn.btn-outline-alt {
  background: var(--color7);
  color: var(--white);
  border: none;
  border-radius: 2rem;
  padding: 0.7rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn.btn-outline-alt {
  background: var(--white);
  color: var(--color7);
  border: 2px solid var(--color7);
}
.btn.btn-outline-alt:hover, .btn:hover {
  background: var(--color8);
  color: var(--white);
}

.contato-alt {
  background: var(--color4);
  padding: 3rem 0;
}
.contato-content-alt {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}
.contato-info-alt {
  flex: 1;
}
.info-item-alt {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.info-item-alt i {
  font-size: 1.5rem;
  color: var(--color8);
}
.social-media-alt {
  margin-top: 1.2rem;
  display: flex;
  gap: 1rem;
}
.social-media-alt a {
  color: var(--color8);
  font-size: 1.4rem;
  transition: color 0.2s;
}
.social-media-alt a:hover {
  color: var(--color11);
}
.contato-form-alt {
  flex: 1;
  background: var(--color5);
  border-radius: 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 2rem 1.5rem;
}
.form-group-alt {
  margin-bottom: 1.2rem;
}
.form-group-alt label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--color10);
}
.form-group-alt input, .form-group-alt textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid var(--color3);
  border-radius: 0.5rem;
  font-size: 1rem;
  background: var(--color4);
  color: var(--color11);
}
.form-group-alt input:focus, .form-group-alt textarea:focus {
  outline: none;
  border-color: var(--color8);
}

.localizacao-alt {
  margin-top: 2.5rem;
}
.maps-container-alt {
  display: flex;
  gap: 2rem;
}
.map-alt {
  flex: 1;
  background: var(--color5);
  border-radius: 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 1rem;
}

.footer-alt {
  background: var(--color1);
  color: var(--white);
  padding: 2rem 0 0 0;
}
.footer-content-alt {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}
.footer-logo-alt img {
  width: 120px;
  border-radius: 50%;
  border: 3px solid var(--color7);
}
.footer-links-alt h3, .footer-contato-alt h3 {
  color: var(--color4);
}
.footer-links-alt ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links-alt ul li a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links-alt ul li a:hover {
  color: var(--color7);
}
.footer-contato-alt p {
  margin: 0.3rem 0;
  color: var(--color3);
}
.footer-bottom-alt {
  text-align: center;
  background: var(--color10);
  color: var(--white);
  padding: 1rem 0;
  margin-top: 2rem;
  border-radius: 0 0 1.2rem 1.2rem;
}

#whatsapp-float-alt {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}
#whatsapp-float-alt a {
  background: var(--color7);
  color: var(--white);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: background 0.2s;
}
#whatsapp-float-alt a:hover {
  background: var(--color8);
}

@media (max-width: 900px) {
  .header-flex, .hero-flex, .sobre-flex, .contato-content-alt, .footer-content-alt {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .hero-image img, .sobre-image img, .footer-logo-alt img {
    margin: 0 auto;
    display: block;
  }
  .maps-container-alt {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-alt {
    min-height: 200px;
  }
  .hero-image-mosaic {
    height: 60vw;
    min-height: 200px;
    max-height: 400px;
  }
}
@media (max-width: 600px) {
  .mosaic-slice,
  .mosaic-slice img {
    transition: none;
  }
  .slice-1, .slice-2, .slice-3, .slice-4,
  .mosaic-slice:hover.slice-1,
  .mosaic-slice:hover.slice-2,
  .mosaic-slice:hover.slice-3,
  .mosaic-slice:hover.slice-4 {
    clip-path: none;
  }
  .hero-alt {
    min-height: 120px;
  }
} 

.carousel-slide {
    min-width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    display: none;
}
.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
    display: flex;
} 

.galeria-carousel {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 2rem auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    width: 100%;
    overflow: hidden;
}
.carousel-slide {
    min-width: 25%;
    max-width: 25%;
    flex: 0 0 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    pointer-events: auto;
    transition: transform 0.4s, z-index 0.2s;
    z-index: 1;
}
.carousel-slide img {
    width: 95%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    background: #fff;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}
.carousel-slide.expanded {
    z-index: 10;
}
.carousel-slide.expanded img {
    transform: scale(1.5);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.carousel-btn {
    background: var(--color7);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    opacity: 0.8;
    transition: background 0.2s, opacity 0.2s;
}
.carousel-btn.prev {
    left: -20px;
}
.carousel-btn.next {
    right: -20px;
}
.carousel-btn:hover {
    background: var(--color8);
    opacity: 1;
}
@media (max-width: 900px) {
    .galeria-carousel {
        max-width: 98vw;
    }
    .carousel-slide {
        min-width: 33.33%;
        max-width: 33.33%;
        flex: 0 0 33.33%;
    }
}
@media (max-width: 700px) {
    .carousel-slide {
        min-width: 50%;
        max-width: 50%;
        flex: 0 0 50%;
    }
    .carousel-slide img {
        max-height: 120px;
    }
}
@media (max-width: 500px) {
    .carousel-slide {
        min-width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    .carousel-slide img {
        max-height: 90px;
    }
} 