/* Hero Section - Seguindo modelo Madula exato */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding-top: 140px;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
}

.hero .container {
    height: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 550px;
}

.hero-left {
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e8f0fe;
    color: #1E3572;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 32px;
    text-transform: uppercase;
    line-height: 1;
}

.hero-badge i {
    font-size: 16px;
    color: #1E3572;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: #1a202c;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-top: 0;
}

.text-highlight {
    color: #1E3572;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #718096;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 0;
}

.btn-read-more {
    background: #1E3572;
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(30, 53, 114, 0.3);
}

.btn-read-more i {
    font-size: 15px;
}

.hero-team-info {
    display: flex;
    align-items: center;
    gap: 18px;
}

.team-text {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.team-text strong {
    font-size: 1.15rem;
    color: #1a202c;
    font-weight: 700;
}

.team-text span {
    font-size: 0.9rem;
    color: #718096;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 4px;
    line-height: 1;
}

.stat-box p {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.4;
}

.hero-right {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    align-self: flex-end;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 650px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-doctor-image {
    width: 100%;
    max-width: 650px;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    aspect-ratio: 650 / 700;
    object-fit: cover;
    object-position: center bottom;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.circle-1 {
    width: 140px;
    height: 140px;
    background: rgba(30, 53, 114, 0.08);
    top: 10%;
    right: 5%;
}

.circle-2 {
    width: 100px;
    height: 100px;
    background: rgba(37, 211, 102, 0.08);
    bottom: 25%;
    left: -10%;
}

.decoration-icon {
    position: absolute;
    font-size: 32px;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.icon-1 {
    top: 8%;
    right: 10%;
    color: #25d366;
    font-size: 28px;
}

.icon-2 {
    bottom: 30%;
    left: -8%;
    color: #1E3572;
    font-size: 42px;
}

.icon-3 {
    top: 35%;
    right: 2%;
    color: #2563eb;
    font-size: 24px;
}

.decoration-line {
    position: absolute;
    bottom: 18%;
    right: 15%;
    width: 50px;
    height: 3px;
    background: #06b6d4;
    transform: rotate(-20deg);
    z-index: 3;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
        align-items: end;
    }

    .hero-left {
        padding-right: 0;
        text-align: left;
    }

    .hero-badge {
        font-size: 10px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 3rem;
        margin-bottom: 20px;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 28px;
        line-height: 1.6;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 0;
    }

    .btn-read-more {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }

    .hero-team-info {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stat-box {
        text-align: center;
    }

    .hero-right {
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 400px;
    }

    .hero-doctor-image {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 90px;
    }

    .hero-badge {
        font-size: 9px;
        padding: 7px 14px;
        margin-bottom: 16px;
    }

    .hero-badge i {
        font-size: 12px;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .btn-read-more {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }

    .hero-team-info {
        flex-direction: row;
        justify-content: flex-start;
    }

    .team-text strong {
        font-size: 1rem;
    }

    .team-text span {
        font-size: 0.8rem;
    }

    .stat-box h3 {
        font-size: 2rem;
    }

    .hero-image-wrapper {
        max-width: 320px;
    }

    .hero-doctor-image {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 375px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .btn-read-more {
        padding: 12px 20px;
        font-size: 13px;
    }

    .hero-image-wrapper {
        max-width: 280px;
    }

    .hero-doctor-image {
        width: 100%;
        max-width: 280px;
    }
}