/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: rgb(255, 230, 235);
    color: #333;
}

.agendamento-container {
    max-width: 500px;
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
}

.agendamento-container .form-group {
    position: relative;
    margin-bottom: 20px;
}

.agendamento-container input,
.agendamento-container select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    font-size: 16px;
    background: none;
}

.agendamento-container label {
    position: absolute;
    left: 12px;
    top: 12px;
    color: #aaa;
    font-size: 16px;
    pointer-events: none;
    transition: 0.3s;
    background-color: white;
    padding: 0 4px;
}

.agendamento-container input:focus + label,
.agendamento-container input:not(:placeholder-shown) + label,
.agendamento-container select:focus + label,
.agendamento-container select:not([value=""]) + label {
    top: -10px;
    font-size: 12px;
    color: #ff69b4;
}


/* HEADER */
header {
    background-color: #000;
    color: #ff69b4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}

header .logo {
    font-size: 28px;
    font-weight: bold;
}

header .logo span {
    color: #ff69b4;
}

header nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

header nav ul li a {
    color: #ff69b4;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

header nav ul li a:hover {
    color: #fff;
}

/* HERO */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
    gap: 40px;
}

.hero-top {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    position: relative;
}

.hero-top-video {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Hero lateral */
.hero-content {
    display: flex;
    justify-content: center;
    gap: 50px;
    width: 100%;
    flex-wrap: wrap;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
/* Linha divisória horizontal gradiente rosa */
.hero-divider-horizontal {
    width: 100%;
    height: 10px; /* espessura da linha */
    background: linear-gradient(to right, #ff69b4, #ff3c9b);
    margin: px 0; /* espaço acima e abaixo da linha */
    border-radius: 3px;
}


.hero-left img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s;
}

.hero-left img:hover {
    transform: scale(1.05);
}

.hero-right {
    max-width: 600px;
    text-align: left;
}

.hero-right h1 {
    font-size: 50px;
    color: #ff69b4;
    margin-bottom: 20px;
}

.hero-right p {
    font-size: 20px;
    margin-bottom: 20px;
}
/* Inicialmente fora da tela à esquerda */
.animate-on-scroll {
    transform: translateX(-100%);
    opacity: 0;
    transition: all 1s ease-out;
}

/* Quando a imagem entrar na tela */
.animate-on-scroll.visible {
    transform: translateX(0);
    opacity: 1;
}

.btn-hero {
    padding: 12px 28px;
    background-color: #ff69b4;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-icons div span {
    margin-right: 8px;
}

/* Espaço */
.espaco {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 50px;
    gap: 20px;
}

h2{ font-size: 35px;}

.espaco-text {
    width: 50%;
}

.espaco-text h2 {
    color: #ff69b4;
    margin-bottom: 20px;
    font-size: 32px;
}

.background-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(''); /* sua imagem */
    background-size: cover;
    background-position: center;
    z-index: -1; /* fica atrás de tudo */
}

.card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.7); /* luz rosa ao redor */
}

/* Estilo Quem Somos */
#quem-somos {
    background-color: #f8f5f2; /* cor de fundo suave */
    padding: 60px 20px;
    text-align: center;
}

#quem-somos h2 {
    font-size: 2.5rem;
    color: #d63384; /* cor destaque */
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

#quem-somos p {
    font-size: 1.1rem;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

/* Estilo Contato com Mapa */
#contato {
    background-color: #fff0f6;
    padding: 60px 20px;
    text-align: center;
}

#contato h2 {
    font-size: 2.5rem;
    color: #d63384;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

#contato p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
}

.contato-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.contato-item h3 {
    font-size: 1.2rem;
    color: #d63384;
    margin-bottom: 5px;
}

.contato-item p {
    font-size: 1rem;
    color: #333;
}

.btn-contato {
    display: inline-block;
    background-color: #d63384;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.3s;
    margin-bottom: 40px;
}

.btn-contato:hover {
    background-color: #b52a70;
}

.mapa iframe {
    border: 0;
    border-radius: 10px;
    max-width: 100%;
}


/* Certifique-se que seções com fundo bloqueiam a imagem */
.hero, .servicos, .depoimento {
    background-color: rgba(255,255,255,0.8); /* semi-opaco */
}

.espaco-text p {
    font-size: 18px;
    line-height: 1.8;      /* distância entre linhas */
}

.espaco-img img {
    width: 500px;
    border-radius: 10px;
}

/* Serviços */
.servicos {
    padding: 80px 50px;
    background-color: #f9f9f9;
    text-align: center;
}

html {
    scroll-behavior: smooth;
}

.servicos h2 {
    color: #ff69b4;
    margin-bottom: 50px;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.card h3 {
    color: #ff69b4;
    margin-bottom: 15px;
}

.card p {
    margin-bottom: 20px;
    font-size: 16px;
}

.btn-agendar {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff69b4;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-agendar:hover {
    background-color: #ff3c9b;
}

/* Depoimento */
.depoimento {
    padding: 80px 50px;
    text-align: center;
}

.depoimento h2 {
    color: #ff69b4;
    margin-bottom: 40px;
}

.depoimento blockquote {
    font-style: italic;
    font-size: 20px;
    position: relative;
    max-width: 700px;
    margin: auto;
    padding: 20px;
    border-left: 5px solid #ff69b4;
}

.depoimento blockquote cite {
    display: block;
    margin-top: 10px;
    color: #ff69b4;
    font-weight: bold;
    font-style: normal;
}

/* Contato */
.contato {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 50px;
    gap: 20px;
}

.form {
    width: 50%;
}

.form h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 15px;
}

.form p {
    margin-bottom: 20px;
}

form input {
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
}

form button {
    margin-top: 10px;
    width: 100%;
    padding: 14px;
    background: #ff69b4;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.img-contato img {
    width: 450px;
    border-radius: 12px;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        align-items: center;
    }
    .hero-left, .hero-right {
        width: 100%;
        text-align: center;
    }
    .espaco {
        flex-direction: column;
        align-items: center;
    }
    .espaco-img img {
        width: 100%;
    }
}
