:root {
    --primary-color: #0E4174;
    --primary-dark: #0a325a;
    --secondary-color: #279989;
    --accent-color: #2AC7A5;
    --orange-color: #F37021;
    --text-color: #353434;
    --light-text: #ffffff;
    --muted-text: #666666;
    --bg-light: #F6F6F6;
    --white: #ffffff;
    --border-color: #EDEDED;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --header-height: 80px;
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

section {
    padding: 80px 20px;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
}

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

.text-center .section-title,
.text-center .section-tag,
.text-center p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
}

.section-tag {
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Header */
header {
    height: var(--header-height);
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 40px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

nav a:hover {
    color: var(--accent-color);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(42, 199, 165, 0.3);
}

.btn-outline {
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--white);
    background-color: rgba(255,255,255,0.1);
}

/* Hero */
.hero {
    background-color: var(--primary-color);
    background-image: url('../img/fundo_blur.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 0; /* Padding movido para o conteúdo */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: stretch; 
    width: 100%;
}

.hero-content {
    padding: 100px 0;
}

.hero-content .label {
    background: rgba(255,255,255,0.1);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-badges {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.8rem;
    opacity: 0.8;
}

.hero-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Symptoms Section */
.symptoms-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.symptom-card {
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    transition: var(--transition);
}

.symptom-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.symptom-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* Treatments Section */
.treatments {
    background-color: var(--bg-light);
}

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

.treatments-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    list-style: none;
}

.treatments-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.treatments-list i {
    color: var(--accent-color);
}

/* Diferenciais */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.diff-card {
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: var(--transition);
}

.diff-card.featured {
    background-color: var(--primary-color);
    color: var(--white);
}

.diff-card.featured h3 {
    color: var(--white);
}

.diff-card:not(.featured):hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-hover);
}

/* Steps */
.steps {
    background-color: var(--bg-light);
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 24px;
    position: relative;
    border: 1px solid var(--border-color);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 40px;
    background-color: var(--accent-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* ResolveSaude Section */
.resolve-saude {
    background: linear-gradient(135deg, var(--bg-light), var(--white));
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 50px auto;
}

.price-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    position: relative;
}

.price-card.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
}

.price-card.featured h3 { color: var(--white); }
.price-card.featured .price { color: var(--white); }
.price-card.featured .orange-text { color: var(--orange-color); font-weight: 700; }

.price-card .badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--orange-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
    max-height: 500px;
    opacity: 1;
}

.faq-answer p {
    margin-bottom: 15px;
}

.price-card ul, .unit-card ul {
    list-style-position: inside;
    padding: 0;
}

.price-card li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.faq-item.active .faq-question {
    color: var(--accent-color);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid, .treatments-grid, .pricing-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero h1 { font-size: 2.5rem; }
    .hero-btns, .hero-badges { justify-content: center; }
    .symptoms-grid, .diff-grid, .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-image { max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .symptoms-grid, .diff-grid, .steps-grid {
        grid-template-columns: 1fr;
    }
    nav { display: none; }
    .header-cta .btn-primary { display: none; }
    .treatments-list { grid-template-columns: 1fr; }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}
