:root {
    --primary-color: #98628E;
    --secondary-color: #444444;
    --accent-color: #25d366;
    --light-bg: #F8F9FA;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--primary-color);
}

/* Estilos gerais */
body {
    font-family: 'Arial', sans-serif;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-image: url('../img/fundo.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.75);
}

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

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.credentials-list {
    margin-bottom: 2rem;
}

.credential-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.8);
    padding: 8px 15px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.credential-item span:first-child {
    font-size: 1.4rem;
    margin-right: 15px;
    min-width: 30px;
}

.profile-image-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
}

.profile-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    max-width: 600px;
}

.btn-agendar {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-agendar:hover {
    background-color: #7a4e71;
    color: white;
    transform: translateY(-2px);
}

.social-icons {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    color: white;
}

.social-icon.instagram:hover {
    background: #E1306C;
}

.social-icon.youtube:hover {
    background: #FF0000;
}

.social-icon.facebook:hover {
    background: #4267B2;
}

/* Navbar */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    padding: 0;
    max-width: 200px;
}

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

.nav-link {
    font-weight: 500;
    color: var(--secondary-color) !important;
    margin: 0 15px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

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

.btn-agendamento {
    background-color: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-agendamento:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-2px);
}

/* Seções */
section {
    padding: 80px 0;
}

/* Cards */
.card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

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

/* Botões */
.btn-primary {
    background-color: var(--secondary-color);
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Formulário */
.form-control {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

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

.service-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

/* Profile Image */
.profile-image {
    text-align: center;
}

.profile-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 100px 0 60px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .credential-item {
        justify-content: center;
    }

    .profile-image-wrapper {
        margin-top: 2rem;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .social-icons {
        justify-content: center;
        margin-top: 2rem;
    }

    .profile-image {
        margin-top: 3rem;
    }
    
    .credentials {
        text-align: left;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* Ajuste responsivo */
@media (max-width: 991px) {
    .navbar-brand {
        max-width: 150px;
    }

    .logo-img {
        max-height: 60px;
    }

    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }

    .nav-link {
        margin: 10px 0;
    }

    .btn-agendamento {
        margin: 10px auto;
        display: inline-block;
    }
}

/* Botão WhatsApp Grande */
.btn-whatsapp-large {
    background-color: #25d366;
    color: white;
    padding: 20px 40px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 300px;
    max-width: 400px;
}

.btn-whatsapp-large:hover {
    background-color: #128C7E;
    color: white;
    transform: translateY(-2px);
}

/* Footer Atualizado */
.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.footer h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer p {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.footer hr {
    border-color: #ddd;
}

.footer .text-muted {
    font-size: 0.9rem;
}

.caslu-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.caslu-link:hover {
    color: var(--secondary-color);
}

/* Responsivo */
@media (max-width: 768px) {
    .footer .col-md-4 {
        margin-bottom: 2rem;
    }

    .btn-whatsapp-large {
        font-size: 1.1rem;
        padding: 15px 30px;
    }
} 