/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --azul-profundo: #0601fe;
    --azul-violeta: #4430fe;
    --azul-claro: #e8e7ff;
    --azul-muito-claro: #f5f5ff;
    --branco: #ffffff;
    --texto-escuro: #1a1a2e;
    --texto-medio: #16213e;
    --sombra: rgba(6, 1, 254, 0.15);
    --gradient-hero: linear-gradient(135deg, var(--azul-profundo) 0%, var(--azul-violeta) 100%);
    --gradient-card: linear-gradient(145deg, var(--branco) 0%, var(--azul-muito-claro) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--texto-escuro);
    background-color: var(--branco);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(6, 1, 254, 0.1);
    z-index: 9999;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo {
    width: 28px;
    height: auto;
    object-fit: contain;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--texto-escuro);
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.9rem;
    color: var(--azul-violeta);
    font-weight: 300;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--texto-escuro);
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--azul-violeta);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--azul-violeta);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--gradient-hero);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 1, 254, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 1, 254, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--texto-escuro);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    background: var(--branco);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding-top: 80px;
    box-sizing: border-box;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: var(--gradient-hero);
    border-radius: 50%;
    opacity: 0.05;
    z-index: -1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    padding-top: 100px;
    color: var(--texto-escuro);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--texto-medio);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-cta {
    background: var(--gradient-hero);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(6, 1, 254, 0.3);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(6, 1, 254, 0.4);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-bg {
    width: 400px;
    height: 400px;
    background: var(--gradient-hero);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(6, 1, 254, 0.3);
}

.hero-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.hero-profile-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Sobre Section */
.sobre {
    padding: 6rem 0;
    background: var(--azul-muito-claro);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.sobre-image {
    display: flex;
    justify-content: center;
}

.photo-steffani {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--sombra);
    border: 3px solid rgba(6, 1, 254, 0.2);
    transition: all 0.3s ease;
}

.photo-steffani:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px var(--sombra);
}

.sobre-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--texto-escuro);
    font-weight: 300;
}

.sobre-intro {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--azul-violeta);
    font-weight: 400;
}

.sobre-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.credencial {
    background: var(--gradient-hero);
    color: white;
    padding: 1rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
    font-size: 1.1rem;
}

.abordagem {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--branco);
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--sombra);
}

.abordagem h3 {
    color: var(--azul-violeta);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Especialidades */
.especialidades {
    padding: 6rem 0;
    background: var(--branco);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--texto-escuro);
    font-weight: 300;
}

.especialidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.especialidade-card {
    background: var(--gradient-card);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--sombra);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.especialidade-card:hover {
    transform: translateY(-10px);
    border-color: rgba(6, 1, 254, 0.3);
    box-shadow: 0 15px 40px rgba(6, 1, 254, 0.2);
}

.especialidade-card:hover .condition-icon {
    fill: var(--azul-profundo);
    transform: scale(1.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.condition-icon {
    width: 48px;
    height: 48px;
    fill: var(--azul-violeta);
    transition: all 0.3s ease;
}

.especialidade-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--texto-escuro);
    font-weight: 600;
}

.especialidade-card p {
    color: var(--texto-medio);
    line-height: 1.6;
    font-size: 1rem;
}

/* Agendamentos */
.agendamentos {
    padding: 6rem 0;
    background: var(--azul-claro);
}

.agendamento-content-centered {
    display: flex;
    justify-content: center;
    align-items: center;
}

.agendamento-info {
    max-width: 600px;
    text-align: center;
}

.agendamento-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--texto-escuro);
    font-weight: 400;
}

.agendamento-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.horarios {
    background: var(--branco);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 5px 20px var(--sombra);
}

.horarios h4 {
    color: var(--azul-profundo);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.horarios ul {
    list-style: none;
}

.horarios li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--azul-claro);
}

.horarios li:last-child {
    border-bottom: none;
}

.botoes-contato {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.whatsapp-button,
.instagram-button,
.linkedin-button {
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    min-width: 200px;
    justify-content: center;
}

.whatsapp-button {
    background: #25D366;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.instagram-button {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 6px 25px rgba(188, 24, 136, 0.3);
}

.instagram-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(188, 24, 136, 0.4);
}

.linkedin-button {
    background: #0077B5;
    box-shadow: 0 6px 25px rgba(0, 119, 181, 0.3);
}

.linkedin-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 119, 181, 0.4);
}

.social-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}



/* Contato */
.contato {
    padding: 6rem 0;
    background: var(--azul-muito-claro);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contato-form {
    background: var(--branco);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--sombra);
}

.contato-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--texto-escuro);
    font-weight: 400;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--texto-escuro);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(6, 1, 254, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--branco);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--azul-violeta);
}

.form-submit {
    background: var(--gradient-hero);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 6px 25px rgba(6, 1, 254, 0.3);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(6, 1, 254, 0.4);
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contato-info h3 {
    font-size: 1.8rem;
    color: var(--texto-escuro);
    font-weight: 400;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: var(--branco);
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--sombra);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-icon {
    width: 24px;
    height: 24px;
    fill: var(--azul-profundo);
    transition: all 0.3s ease;
}

.info-item:hover .contact-icon {
    fill: var(--azul-violeta);
    transform: scale(1.1);
}

.info-item strong {
    color: var(--azul-profundo);
    font-size: 1.1rem;
}

.mapa-placeholder {
    height: 200px;
    background: var(--gradient-card);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px var(--sombra);
    border: 2px solid rgba(6, 1, 254, 0.2);
}

.mapa-content {
    text-align: center;
    color: var(--texto-medio);
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--texto-escuro);
    color: var(--branco);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info h4,
.footer-links h4,
.footer-social h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--azul-violeta);
}

.footer-info p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: var(--branco);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--azul-violeta);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.social-link:hover {
    color: var(--azul-claro);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(6, 1, 254, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float .whatsapp-icon {
    font-size: 1.8rem;
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .cta-button {
        display: none;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .hero-bg {
        width: 250px;
        height: 250px;
    }

    .hero-profile-img {
        width: 100%;
        height: 100%;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .photo-steffani {
        width: 250px;
        height: 250px;
    }

    .especialidades-grid {
        grid-template-columns: 1fr;
    }

    .agendamento-content-centered {
        padding: 0 1rem;
    }

    .botoes-contato {
        flex-direction: column;
        gap: 1rem;
    }

    .whatsapp-button,
    .instagram-button {
        min-width: 100%;
    }

    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contato-form {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .social-links {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float .whatsapp-icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .especialidade-card {
        padding: 2rem 1.5rem;
    }

    .contato-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }


}

/* Animações de scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling para navegação */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}
