/* Variáveis de cores */
:root {
    --primary: #2c5aa0;
    --secondary: #ff6b9d;
    --light: #f8f9fa;
    --dark: #666;
    --accent: #f9e4a8;
}

/* Estilos gerais */
body {
    font-family: 'Inter', sans-serif;
    padding-top: 56px;
    /* Espaço para o navbar fixo */
}

/* section {
    padding: 5rem 0;
} */

/* Hero Section */
.hero-section {
    background-size: cover;
    /* min-height: 100vh; */
    position: relative;
}

@media (max-width: 992px) {
    .hero-section {
        background-position: 25% center;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 1rem;
        border-radius: 0.5rem;
        margin-top: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .nav-item {
        margin: 0.5rem 0;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
    }
    
    .navbar .btn-primary {
        width: 100%;
        margin-top: 0.5rem;
    }
}

.business-card {
    background: #f5e6d3;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.card-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.shape-circle-yellow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--accent);
    border-radius: 50%;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
}

.shape-circle-blue {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.shape-wave-pink {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--secondary);
    border-radius: 50%;
    bottom: -200px;
    right: -100px;
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-name {
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.1;
}

.card-specialty {
    color: var(--primary);
    font-weight: 500;
}

.contact-item {
    display: flex;
    align-items: center;
    color: var(--dark);
}

.contact-item i {
    color: var(--secondary);
}

.card-address p {
    color: #666;
    margin-bottom: 0;
}

.card-social {
    display: flex;
    align-items: center;
    color: var(--dark);
}

.card-social i {
    color: var(--secondary);
    margin-right: 0.5rem;
}

/* Botão CTA */
.cta-button {
    background: linear-gradient(135deg, var(--primary) 0%, #1e3a8a 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(44, 90, 160, 0.5);
}

/* Social Icons */
.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* About Section */
.about-section {    
    /* background: #FFE1EB; */
background: linear-gradient(100deg,rgb(255, 239, 245) 0%, rgba(255, 255, 255, 1) 56%, rgb(255, 239, 245) 100%);
}

.bg-gradient-primary {
    background: linear-gradient(90deg, rgba(13,110,253,0.1) 0%, rgba(13,110,253,0.3) 100%);
}

/* .about-content {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(249,228,168,0.1) 100%);    
} */

.bg-primary-soft {
    background-color: rgba(13, 110, 253, 0.1) !important;
}

.text-justify {
    text-align: justify;
    text-justify: inter-word;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

.py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.mb-6 {
    margin-bottom: 4rem;
}

.service-item {
    transition: transform 0.3s ease;
    height: 100%;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item h4 {
    color: var(--primary);
}

/* Testimonials */
.testimonial {
    transition: transform 0.3s ease;
    height: 100%;
}

.testimonial:hover {
    transform: translateY(-5px);
}

/* Estilos para o WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 10px 20px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
}

.whatsapp-icon {
    font-size: 24px;
    margin-right: 8px;
}

.whatsapp-text {
    font-weight: 500;
}

/* Dropdown personalizado */
.whatsapp-widget .dropdown-menu {
    min-width: 250px;
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    border-radius: 12px;
    padding: 0.5rem;
    margin-bottom: 10px;
}

.whatsapp-widget .dropdown-item {
    border-radius: 8px;
    transition: all 0.2s ease;
}

.whatsapp-widget .dropdown-item:hover {
    background-color: rgba(37, 211, 102, 0.1);
}

/* Animação do WhatsApp */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.whatsapp-widget {
    animation: pulse 2s infinite;
}

/* Responsividade */
@media (max-width: 767px) {
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-link {
        padding: 12px;
        width: 50px;
        height: 50px;
        justify-content: center;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-widget .dropdown-menu {
        width: 280px;
        right: 0;
        left: auto;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding-top: 0;
        padding-bottom: 0;
    }

    .business-card {
        margin-top: 2rem;
    }

    .card-name {
        font-size: 2rem;
    }

    section {
        padding: 0 0;
    }    

    .carousel-img-container {
        /* height: 0 !important; */
        min-height: 300px;
    }

    .col-md-6.d-flex.justify-content-center {
        height: auto;
        padding: 2rem 0;
        min-height: 200px;
    }

    .text-center.w-75 img {
        max-height: 150px !important;
        width: auto !important;
    }

    .about-section {
        margin-top: 0 !important;
    }

    .about-content {
        padding: 1.5rem !important;
    }
    
    .fs-5 {
        font-size: 1rem !important;
    }

    .carousel-height {
        flex-direction: column;
        height: auto !important;
        min-height: auto;
    }    
    
    .business-card {
        margin: 0;
        height: auto;
    }
    
    .card-content {
        padding: 40px 20px 20px 20px !important;
    }
    
    .card-name {
        font-size: 1.8rem !important;
    }
    
    .card-specialty {
        font-size: 1rem !important;
    }
    
    .text-center.w-75 {
        width: 90% !important;
        padding: 20px 0;
    }

    .col-md-6 {
        width: 100% !important;
    }

    .badge.rounded-pill {
        min-width: 160px; /* Largura mínima reduzida para mobile */
        width: 100%; /* Ocupa toda a largura disponível */
        max-width: 250px; /* Limite máximo para não ficar muito largo */
        padding: 0.5rem 1rem !important;
    }
}

@media (max-width: 576px) {
    .card-name {
        font-size: 1.8rem;
    }

    .whatsapp-icon {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}

/* Estilo personalizado para altura reduzida do carrossel */
.carousel-height {
    height: 80vh;
    /* Redução de 20% da altura original */
}

/* Garante que as imagens ocupem toda a altura da coluna */
.carousel-img-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center; /* Centraliza a imagem */
    overflow: visible; /* Permite que a imagem seja exibida por completo */
    /* background-color: #bdbab8; */
}

.carousel-img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Estilos para o card */
.business-card {
    background: #f5e6d3;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.card-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.shape-circle-yellow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: #f9e4a8;
    border-radius: 50%;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
}

.shape-circle-blue {
    position: absolute;
    width: 300px;
    height: 300px;
    background: #2c5aa0;
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.shape-wave-pink {
    position: absolute;
    width: 400px;
    height: 400px;
    background: #ff6b9d;
    border-radius: 50%;
    bottom: -200px;
    right: -100px;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
}

.card-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b9d;
}

.card-specialty {
    font-size: 1.2rem;
    color: #2c5aa0;
    font-weight: 500;
}

.cta-button {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
    color: white !important;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 16px 24px;
    margin-top: 70px;
    width: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(44, 90, 160, 0.5);
}

/* Estilos para centralização vertical */
.row.g-0.h-100 {
    height: 100% !important;
}

/* Padronização dos badges */
.badge.rounded-pill {
    min-width: 180px; /* Largura mínima para desktop */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: all 0.3s ease;
}

/* Garante que o texto não quebre em múltiplas linhas */
.badge.rounded-pill span,
.badge.rounded-pill i {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Modern CTA Section Styles */
.cta-section {    
    background: linear-gradient(135deg, #fdf6e4 0%, #fcf4dc 50%, #fdfaf1 100%);
}

/* Estilos modernos para a navbar */
.navbar {
    transition: all 0.3s ease;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 0.25rem 0;
}

.nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    position: relative;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.nav-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover .nav-underline {
    width: 50%;
}

.nav-item.active .nav-link .nav-underline {
    width: 50%;
}

/* Botão de agendamento no menu */
.navbar .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #1e3a8a 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
    transition: all 0.3s ease;
}

.navbar .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

/* Menu mobile */
.navbar-toggler:focus {
    box-shadow: none;
}

/* Efeito de scroll */
.navbar.scrolled {
    padding: 0.25rem 0;
}

.navbar.scrolled .navbar-brand img {
    height: 35px;
}

/* Estilos para o dropdown de agendamento */
.dropdown-menu {
    min-width: 280px;
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 0.5rem;
    margin-top: 8px;
}

.dropdown-item {
    border-radius: 8px;
    transition: all 0.2s ease;
    padding: 0.5rem 1rem;
}

.dropdown-item:hover {
    background-color: rgba(13, 110, 253, 0.1);
}

.dropdown-toggle::after {
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* Responsividade */
@media (max-width: 992px) {
    .dropdown-menu {
        width: 100%;
        box-shadow: none;
        border: 1px solid rgba(0,0,0,0.1);
    }
    
    .dropdown-item {
        padding: 0.75rem 1rem;
    }
    
    .dropdown-toggle {
        width: 100%;
        text-align: left;
    }
    
    .dropdown-toggle::after {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* Footer Moderno */
.footer {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.footer-brand img {
    transition: transform 0.3s ease;
}

.footer-brand:hover img {
    transform: scale(1.05);
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-links a {
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary) !important;
    transform: translateX(5px);
}

.footer-newsletter .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.footer-newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter .btn {
    padding: 0.5rem 1rem;
}

/* Elementos decorativos */
.footer-shape-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: -150px;
    left: -150px;
    filter: blur(60px);
}

.footer-shape-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    bottom: -200px;
    right: -100px;
    filter: blur(80px);
}

.z-index-1 {
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.opacity-10 {
    opacity: 0.1;
}

/* Responsividade */
@media (max-width: 992px) {
    .footer {
        text-align: center;
    }
    
    .footer-brand, 
    .footer-social, 
    .footer-contact,
    .footer-address,
    .footer-links,
    .footer-newsletter {
        margin-bottom: 2rem;
    }
    
    .footer-links ul {
        display: inline-block;
        text-align: left;
    }
    
    .d-flex.align-items-start {
        justify-content: center;
    }
    
    .footer-shape-1,
    .footer-shape-2 {
        display: none;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 3rem 0;
    }
    
    .footer-bottom {
        margin-top: 2rem !important;
        padding-top: 2rem !important;
    }
}
