* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fefef7;
    color: #1e2a2f;
    line-height: 1.5;
    scroll-behavior: smooth;
}

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

/* cabeçalho / nav */
.navbar {
    background: #ffffffea;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #e2e8e6;
    padding: 16px 0;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h2 {
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, #2c5f8a, #4a8db5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo p {
    font-size: 0.8rem;
    color: #4a6a7a;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #2c4a5a;
    transition: 0.2s;
}

.nav-links a:hover {
    color: #2c5f8a;
}

.btn-contato-nav {
    background: #2c5f8a;
    color: white !important;
    padding: 8px 20px;
    border-radius: 40px;
}

.btn-contato-nav:hover {
    background: #1e4a6e;
}

/* hero */
.hero {
    padding: 80px 0 60px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1.2;
}

.hero-badge {
    background: #e1f0f5;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a5a7a;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1e2a2f;
}

.hero-content h1 span {
    color: #2c5f8a;
    border-bottom: 3px solid #cbdcd4;
}

.hero-content p {
    font-size: 1.2rem;
    color: #3e5a68;
    margin-bottom: 32px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #2c5f8a;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    text-decoration: none;
}

.btn-primary:hover {
    background: #1e4a6e;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #2c5f8a;
    color: #2c5f8a;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: #eef3f7;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 40px;
    box-shadow: 0 25px 40px -12px rgba(0,0,0,0.15);
    background: #e6f0ec;
    width: 380px;
    object-fit: cover;
}

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

.section-light {
    background-color: #f9faf8;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1e2a2f;
}

.section-sub {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px auto;
    color: #4f6a78;
    font-size: 1.1rem;
}

/* cards sobre TCC */
.grid-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.card {
    background: white;
    border-radius: 28px;
    padding: 32px 24px;
    flex: 1;
    min-width: 240px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
    transition: all 0.25s;
    border: 1px solid #e4ece8;
    text-align: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -12px rgba(0,0,0,0.08);
    border-color: #cde3da;
}

.card i {
    font-size: 2.5rem;
    color: #2c5f8a;
    margin-bottom: 18px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.card p {
    color: #436178;
}

/* sobre a profissional */
.about-wrap {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
}

.about-text {
    flex: 1.2;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1e4a6e;
}

.about-text p {
    margin-bottom: 18px;
    color: #2f4d61;
}

.badge-credencial {
    display: flex;
    gap: 20px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.badge-credencial span {
    background: #eef3f7;
    padding: 8px 18px;
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 500;
}

.about-img {
    flex: 0.8;
    text-align: center;
}

.about-img img {
    width: 280px;
    border-radius: 40px;
    box-shadow: 0 18px 28px -12px rgba(0,0,0,0.1);
}

/* serviços */
.servicos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.servico-item {
    background: white;
    border-radius: 28px;
    padding: 30px 20px;
    flex: 1 1 260px;
    text-align: center;
    transition: all 0.2s;
    border: 1px solid #e7efeb;
}

.servico-item i {
    font-size: 2.2rem;
    background: #e6f0f5;
    padding: 16px;
    border-radius: 60px;
    color: #2c5f8a;
    margin-bottom: 20px;
}

/* contato/agendamento */
.contact-box {
    background: #eef4f7;
    border-radius: 48px;
    padding: 48px 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: space-between;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.contact-detail {
    margin: 24px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.contact-detail i {
    font-size: 1.5rem;
    width: 40px;
    color: #2c5f8a;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 24px;
}

.social-links a {
    background: white;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    color: #2c5f8a;
    font-size: 1.3rem;
    transition: 0.2s;
}

.social-links a:hover {
    background: #2c5f8a;
    color: white;
}

.contact-form {
    flex: 1;
    background: white;
    padding: 32px;
    border-radius: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #cfdfd8;
    border-radius: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: #fff;
    transition: 0.2s;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #2c5f8a;
    box-shadow: 0 0 0 3px #cfe0e9;
}

button[type="submit"] {
    background: #2c5f8a;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 40px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
}

button[type="submit"]:hover {
    background: #1e4a6e;
}

.whatsapp-fixed {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
    transition: 0.2s;
    z-index: 99;
    text-decoration: none;
}

.whatsapp-fixed:hover {
    background: #1da35e;
    transform: scale(1.05);
}

footer {
    background: #1e2a2f;
    color: #cddfd8;
    text-align: center;
    padding: 32px 0;
    font-size: 0.85rem;
}

@media (max-width: 850px) {
    .hero-content h1 { font-size: 2.5rem; }
    .nav-links { display: none; }
    .nav-flex { justify-content: center; }
    .hero { flex-direction: column-reverse; text-align: center; }
    .hero-content p { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
}