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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #fef7f7 0%, #fde8e8 100%);
    min-height: 100vh;
}

/* Cores de salmão */
:root {
    --salmon-50: #fef7f7;
    --salmon-100: #fde8e8;
    --salmon-200: #fbd5d5;
    --salmon-300: #f8b4b4;
    --salmon-400: #f98080;
    --salmon-500: #fa8072;
    --salmon-600: #e85d48;
    --salmon-700: #c2410c;
    --salmon-800: #9a3412;
    --salmon-900: #7c2d12;
}

.text-salmon {
    color: var(--salmon-500);
}

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

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.heart-icon {
    width: 32px;
    height: 32px;
    color: var(--salmon-500);
}

.btn-contact-header {
    background: var(--salmon-500);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(250, 128, 114, 0.3);
}

.btn-contact-header:hover {
    background: var(--salmon-600);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 128, 114, 0.4);
}

.phone-icon {
    width: 20px;
    height: 20px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #333;
}

.hero-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.7;
}

.experience-badge {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
}

.experience-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--salmon-500);
}

.experience-text {
    font-size: 14px;
    color: #666;
}

.btn-primary {
    background: var(--salmon-500);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(250, 128, 114, 0.3);
}

.btn-primary:hover {
    background: var(--salmon-600);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(250, 128, 114, 0.4);
}

.message-icon {
    width: 24px;
    height: 24px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-container {
    position: relative;
    z-index: 10;
}

.doctor-image {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-background {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--salmon-200), var(--salmon-300));
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-card {
    background: linear-gradient(135deg, var(--salmon-500), var(--salmon-600));
    color: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(250, 128, 114, 0.2);
}

.about-card h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
}

.about-card p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-card p:last-child {
    margin-bottom: 0;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--salmon-50);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(250, 128, 114, 0.15);
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: var(--salmon-500);
    flex-shrink: 0;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.feature-content p {
    color: #666;
    font-size: 16px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--salmon-500), var(--salmon-600));
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--salmon-100);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp,
.btn-call {
    border: none;
    padding: 24px 32px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    min-height: 80px;
    min-width: 250px;
    flex: 1;
    max-width: 300px;
}

.btn-whatsapp {
    background: white;
    color: var(--salmon-600);
}

.btn-whatsapp:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.btn-call {
    background: var(--salmon-700);
    color: white;
}

.btn-call:hover {
    background: var(--salmon-800);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(196, 65, 12, 0.3);
}

.whatsapp-icon,
.btn-call .phone-icon {
    width: 32px;
    height: 32px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-logo span {
    font-size: 20px;
    font-weight: 600;
}

.footer-logo .heart-icon {
    width: 24px;
    height: 24px;
    color: var(--salmon-500);
}

.footer p {
    color: #999;
    font-size: 16px;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .header-content {
        flex-direction: column;
        gap: 16px;
        padding: 16px 0;
    }

    .logo h1 {
        font-size: 20px;
    }

    .btn-contact-header {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 18px;
        min-height: 60px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 20px 32px;
        font-size: 20px;
        min-height: 70px;
    }

    .doctor-image {
        width: 250px;
        height: 250px;
    }

    .about {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-card {
        padding: 32px 24px;
    }

    .about-card h3 {
        font-size: 28px;
    }

    .about-card p {
        font-size: 16px;
    }

    .feature-item {
        padding: 20px;
    }

    .feature-content h4 {
        font-size: 18px;
    }

    .cta {
        padding: 60px 0;
    }

    .cta h3 {
        font-size: 28px;
    }

    .cta p {
        font-size: 18px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-whatsapp,
    .btn-call {
        width: 100%;
        max-width: none;
        min-height: 80px;
        font-size: 22px;
        padding: 24px 20px;
    }

    .experience-badge {
        justify-content: center;
        margin-bottom: 32px;
    }

    .experience-number {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .doctor-image {
        width: 200px;
        height: 200px;
    }

    .about-card {
        padding: 24px 20px;
    }

    .about-card h3 {
        font-size: 24px;
    }

    .cta h3 {
        font-size: 24px;
    }

    .btn-whatsapp,
    .btn-call {
        min-height: 90px;
        font-size: 20px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text,
.hero-image,
.about-card,
.features {
    animation: fadeInUp 0.8s ease-out;
}

/* Hover effects */
.feature-item:hover .feature-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Focus states para acessibilidade */
button:focus {
    outline: 2px solid var(--salmon-500);
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

