/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}


/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: linear-gradient(135deg, #f8e1e9 0%, #fce4ec 100%);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    max-width: 160px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo-container img:hover {
    transform: scale(1.05);
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    transition: color 0.3s ease, transform 0.2s ease;
}

.nav-links li a:hover {
    color: #d81b60;
    transform: translateY(-2px);
}

.nav-links .icon {
    margin-right: 8px;
    font-size: 1.2rem;
}

.cta-button {
    background-color: #d81b60;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #b0003a;
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: #333;
    margin: 4px 0;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsividade */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #f8e1e9 0%, #fce4ec 100%);
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .cta-button {
        padding: 10px 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo-container img {
        max-width: 120px;
    }

    .nav-links li a {
        font-size: 1rem;
    }
}

/* Vídeo Promocional */
.video-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

#videoPlayer {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Seções */
.section {
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #d81b60;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Redes Sociais */
.social-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    background-color: #fff;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    background-color: #f8e1e9;
}

.icon-container {
    display: flex;
    align-items: center;
    margin-right: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
    transform: rotate(10deg) scale(1.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .social-links {
        flex-direction: column;
        gap: 15px;
    }

    .social-link {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .social-link {
        font-size: 1rem;
        padding: 12px 15px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }
}

/* Serviços */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-item:hover .service-image {
    transform: scale(1.05);
}

.service-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    color: #d81b60;
    margin: 15px 0 10px;
    padding: 0 15px;
}

.service-description {
    font-size: 1rem;
    color: #666;
    padding: 0 15px 20px;
}

.service-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #d81b60;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    margin: 0 15px 20px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.service-button:hover {
    background-color: #b0003a;
    transform: scale(1.05);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: slideIn 0.3s ease;
}

.modal-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #d81b60;
}

.modal.active {
    display: flex;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Galeria */
.clinic-gallery {
    padding: 60px 20px;
    text-align: center;
    background-color: #f8e1e9;
}

.clinic-gallery h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #d81b60;
    margin-bottom: 20px;
}

.clinic-gallery p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.carousel-image:hover {
    transform: scale(1.05);
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dot.active {
    background-color: #d81b60;
}

/* Responsividade */
@media (max-width: 768px) {
    .carousel-image {
        height: 300px;
    }

    .carousel-prev,
    .carousel-next {
        padding: 8px 12px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .carousel-image {
        height: 250px;
    }

    .clinic-gallery h3 {
        font-size: 2rem;
    }

    .clinic-gallery p {
        font-size: 1rem;
    }
}

/* Localização */
.location-section {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.location-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.address-container {
    text-align: left;
    max-width: 400px;
}

.address-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 1.5rem;
    color: #d81b60;
    margin-bottom: 10px;
}

.address-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

.map-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #d81b60;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.map-button:hover {
    background-color: #b0003a;
    transform: scale(1.05);
}

.map-container {
    flex: 1;
    max-width: 600px;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .location-info {
        flex-direction: column;
        gap: 20px;
    }

    .map-container {
        max-width: 100%;
    }

    .map-container iframe {
        height: 250px;
    }

    WWII

    .address-container {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .address-title {
        font-size: 1.3rem;
    }

    .address-text {
        font-size: 1rem;
    }

    .map-button {
        padding: 10px 20px;
    }
}

/* Rodapé */
.footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #f8e1e9;
        padding: 20px;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .video-container {
        height: 300px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .services-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .service-image {
        height: 180px;
    }

    .modal-content {
        width: 95%;
    }

    .location-info {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .service-title {
        font-size: 1.4rem;
    }

    .service-button {
        padding: 8px 15px;
    }
}

/* Importação de fontes */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Montserrat:wght@400;700&display=swap');

