.header-raia {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px 10px 20px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    min-width: 320px;
}

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

.logo-area.centralizada {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.logo-img {
    width: 36px;
    height: 36px;
    display: block;
}

.logo-text {
    font-family: 'Arial', 'Segoe UI', sans-serif;
    font-size: 2rem;
    color: #217c7e;
    font-style: italic;
    font-weight: 700;
    margin-left: 4px;
    letter-spacing: -1px;
}

.cesta-area {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 12px;
}

.cesta-img {
    width: 28px;
    height: 28px;
    display: block;
}

.cesta-text {
    font-size: 0.95rem;
    color: #217c7e;
    text-align: left;
    font-family: 'Arial', 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.1;
}
.cesta-text strong {
    font-size: 1.05rem;
    font-weight: 700;
}

.menu-area {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #444;
    cursor: pointer;
    margin-left: 8px;
}

.menu-icon {
    font-size: 2rem;
    display: block;
}

/* Ajuste para o conteúdo não ficar escondido atrás do header fixo */
body {
    margin-top: 70px;
    background: #fff;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    overflow-x: hidden;
}

.search-bar-container {
    width: 100%;
    display: flex;
    justify-content: center;
    background: #fff;
    padding: 16px 0 8px 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}

.search-bar {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 420px;
    background: #f3f3f3;
    border-radius: 24px;
    padding: 2px 12px 2px 16px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

.search-bar input[type="text"] {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.08rem;
    color: #444;
    outline: none;
    padding: 10px 0;
}

.search-btn {
    background: none;
    border: none;
    padding: 0 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.search-icon {
    display: block;
}

.footer-raia {
    width: 100vw;
    background: #f5f6fa;
    border-radius: 0;
    margin: 32px 0 0 0;
    padding: 24px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
}

.footer-cards {
    display: flex;
    gap: 16px;
    width: 100%;
    justify-content: center;
    margin-bottom: 18px;
}

.footer-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    padding: 16px 12px 16px 12px;
    min-width: 160px;
    max-width: 200px;
    flex: 1 1 0;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s;
    gap: 10px;
}
.footer-card:hover {
    box-shadow: 0 2px 8px rgba(33,124,126,0.10);
}
.footer-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin-right: 4px;
}
.footer-card-text {
    flex: 1;
    min-width: 0;
}
.footer-card-text .title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 2px 0;
}
.footer-card-text .subtitle {
    font-size: 0.92rem;
    color: #444;
    margin: 0;
    font-weight: 400;
}
.footer-chevron {
    margin-left: 6px;
    display: flex;
    align-items: center;
}

.footer-rdsaude {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 18px 0 12px 0;
    gap: 2px;
}
.footer-rdlogo {
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}
.footer-rdtext {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2bb673;
    font-family: 'Arial', 'Segoe UI', sans-serif;
    margin-left: 2px;
}

.footer-top-btn {
    margin: 10px 0 18px 0;
    display: flex;
    justify-content: center;
    width: 100%;
}
.footer-top-btn button {
    background: #fff;
    border: 2px solid #bdbdbd;
    border-radius: 24px;
    padding: 8px 32px;
    font-size: 1.08rem;
    color: #222;
    font-weight: 500;
    cursor: pointer;
    transition: border 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.footer-top-btn button:hover {
    border: 2px solid #217c7e;
}

.footer-anvisa {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 18px 0;
    font-size: 1rem;
    color: #444;
    gap: 4px;
}
.footer-anvisa-logo {
    margin-top: 2px;
}

@media (max-width: 600px) {
    .footer-raia {
        max-width: 100vw;
        border-radius: 0;
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
        left: 0;
        right: 0;
        transform: none;
    }
    .footer-cards {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    .footer-card {
        max-width: 95vw;
        min-width: 0;
        width: 100%;
    }
}

.gotazil-hero {
    max-width: 100vw;
    margin: 32px auto 0 auto;
    padding: 0 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}
.gotazil-metodo {
    color: #ff1a1a;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 1px;
}
.gotazil-destaque {
    border: 1.5px dotted #ff1a1a;
    border-radius: 6px;
    padding: 22px 12px 18px 12px;
    margin-bottom: 32px;
    background: #fff;
    display: block;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}
.gotazil-destaque p {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.35;
    text-align: center;
    word-break: break-word;
}
.gotazil-red {
    color: #ff1a1a;
    font-weight: 900;
}
.gotazil-destaque u {
    text-decoration-thickness: 2px;
}
.gotazil-desc {
    font-size: 1.1rem;
    margin: 0 0 8px 0;
    color: #222;
}
.gotazil-titulo {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 48px 0 0 0;
    line-height: 1.15;
    color: #111;
}
@media (max-width: 650px) {
    .gotazil-destaque {
        max-width: 98vw;
        padding: 16px 4vw 14px 4vw;
    }
    .gotazil-hero {
        padding: 0 2vw;
    }
    .gotazil-destaque p {
        font-size: 1rem;
    }
    .gotazil-titulo {
        font-size: 1.5rem;
    }
}

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

@media (max-width: 650px) {
    .footer-raia {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
        left: 0;
        right: 0;
        transform: none;
    }
}

.modal-bg {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.35);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}
.modal-links {
    background: #fff;
    border-radius: 16px;
    max-width: 98vw;
    width: 420px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 32px rgba(0,0,0,0.12);
    padding: 32px 18px 24px 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
    z-index: 10;
}
.modal-links h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #217c7e;
}
.modal-links-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.modal-link-item {
    display: flex;
    align-items: center;
    background: #f5f6fa;
    border-radius: 10px;
    padding: 10px 12px;
    gap: 14px;
    box-shadow: 0 1px 4px rgba(33,124,126,0.04);
}
.modal-link-item img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: cover;
    background: #fff;
    border: 1px solid #e0e0e0;
}
.modal-link-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.modal-link-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: #222;
}
.modal-link-desc {
    font-size: 1rem;
    color: #217c7e;
    font-weight: 500;
}
.modal-link-discount {
    color: #ff1a1a;
    font-size: 0.98rem;
    font-weight: 700;
    margin-left: 8px;
}
.modal-link-btn {
    margin-top: 4px;
    display: inline-block;
    background: #217c7e;
    color: #fff;
    font-weight: 600;
    border-radius: 0;
    padding: 6px 22px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s;
    border: none;
    margin-left: 0;
    margin-right: 0;
    box-shadow: none;
}
.modal-link-btn:hover {
    background: #2bb673;
}
@media (max-width: 500px) {
    .modal-links {
        width: 98vw;
        min-width: 0;
        padding: 18px 2vw 14px 2vw;
    }
    .modal-link-item img {
        width: 48px;
        height: 48px;
    }
    .modal-link-title, .modal-link-desc {
        font-size: 0.95rem;
    }
    .modal-link-btn {
        font-size: 0.95rem;
        padding: 5px 14px;
    }
}

.destaque-card {
    border: 2px solid #222;
    background: #fff;
    box-shadow: none;
    margin-bottom: 12px;
    justify-content: center;
    text-align: center;
    font-weight: 700;
}
.destaque-icon svg {
    width: 32px !important;
    height: 32px !important;
}
.destaque-text .title {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
}
.destaque-text .subtitle {
    font-size: 1rem;
    color: #217c7e;
    text-align: center;
}
.destaque-chevron {
    align-items: center;
}
.info-card {
    border: none;
    background: #f5f6fa;
    box-shadow: none;
    margin-bottom: 0;
    text-align: left;
    font-weight: 400;
}
.info-icon svg {
    width: 24px !important;
    height: 24px !important;
}
.info-text .title {
    font-size: 1.08rem;
    font-weight: 700;
    color: #217c7e;
    text-align: left;
}
.info-text .subtitle {
    font-size: 0.98rem;
    color: #222;
    text-align: left;
}
.info-chevron {
    align-items: center;
}
@media (max-width: 600px) {
    .destaque-card {
        font-size: 1rem;
        padding: 12px 6px;
    }
    .destaque-icon svg {
        width: 26px !important;
        height: 26px !important;
    }
    .destaque-text .title {
        font-size: 1.05rem;
    }
    .info-icon svg {
        width: 20px !important;
        height: 20px !important;
    }
}

.footer-extra {
    width: 100%;
    text-align: center;
    margin: 18px 0 0 0;
    font-size: 0.98rem;
    color: #444;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}
.footer-links-seguranca {
    margin-bottom: 2px;
}
.footer-links-seguranca a {
    color: #217c7e;
    text-decoration: underline;
    margin: 0 2px;
    font-weight: 500;
    font-size: 0.98rem;
}
.footer-contato {
    font-size: 0.98rem;
}
.footer-contato a {
    color: #217c7e;
    text-decoration: underline;
}
.footer-empresa {
    font-size: 0.95rem;
    color: #888;
}
@media (max-width: 600px) {
    .footer-extra {
        font-size: 0.92rem;
        gap: 4px;
    }
    .footer-empresa {
        font-size: 0.9rem;
    }
}

.gotazil-fsc {
    max-width: 700px;
    margin: 40px auto 0 auto;
    padding: 0 12px 32px 12px;
    font-family: 'Montserrat', Arial, sans-serif;
    color: #111;
}
.gotazil-fsc-metodo {
    color: #ff1a1a;
    font-size: 1.15rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: 1px;
}
.gotazil-fsc-destaque {
    border: 1.5px dashed #ff1a1a;
    border-radius: 8px;
    padding: 22px 12px 18px 12px;
    margin-bottom: 32px;
    background: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.25;
}
.gotazil-fsc-red {
    color: #ff1a1a;
    font-weight: 900;
}
.gotazil-fsc-blue {
    color: #217c7e;
    font-weight: 900;
    text-decoration: underline;
}
.gotazil-fsc-desc {
    font-size: 1.08rem;
    text-align: center;
    margin: 0 0 8px 0;
    color: #222;
}
.gotazil-fsc-beneficios, .gotazil-fsc-naoprecisa, .gotazil-fsc-resumo, .gotazil-fsc-oquevai, .gotazil-fsc-bonus {
    background: #f5f6fa;
    border-radius: 8px;
    margin: 28px 0 0 0;
    padding: 18px 18px 12px 18px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.gotazil-fsc-beneficios h3, .gotazil-fsc-naoprecisa h3, .gotazil-fsc-resumo h3, .gotazil-fsc-oquevai h3, .gotazil-fsc-bonus h3 {
    color: #217c7e;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.gotazil-fsc-beneficios ul, .gotazil-fsc-naoprecisa ul, .gotazil-fsc-oquevai ul, .gotazil-fsc-bonus ul {
    margin: 0;
    padding-left: 18px;
    font-size: 1.05rem;
    color: #222;
}
.gotazil-fsc-beneficios li, .gotazil-fsc-naoprecisa li, .gotazil-fsc-oquevai li, .gotazil-fsc-bonus li {
    margin-bottom: 6px;
    line-height: 1.4;
}
.gotazil-fsc-resumo p {
    margin: 0 0 8px 0;
    font-size: 1.05rem;
    color: #222;
}
.gotazil-fsc-cta {
    text-align: center;
    margin: 36px 0 0 0;
}
.gotazil-fsc-preco {
    font-size: 2rem;
    font-weight: 900;
    color: #ff1a1a;
    margin: 10px 0 18px 0;
}
.gotazil-fsc-btn {
    background: #217c7e;
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 32px;
    padding: 14px 38px;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(33,124,126,0.08);
    transition: background 0.2s;
    display: inline-block;
}
.gotazil-fsc-btn:hover {
    background: #2bb673;
}
.gotazil-fsc-autor {
    margin: 36px 0 0 0;
    text-align: center;
    color: #444;
    font-size: 1.05rem;
}
@media (max-width: 600px) {
    .gotazil-fsc {
        padding: 0 2vw 24px 2vw;
    }
    .gotazil-fsc-destaque {
        font-size: 1.05rem;
        padding: 14px 4vw 12px 4vw;
    }
    .gotazil-fsc-preco {
        font-size: 1.3rem;
    }
    .gotazil-fsc-btn {
        font-size: 1rem;
        padding: 10px 18px;
    }
}

.gotazil-fsc-btn-early {
    display: block;
    background: #217c7e;
    color: white;
    text-align: center;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.2em;
    margin: 20px auto;
    max-width: 300px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(33, 124, 126, 0.3);
    transition: all 0.3s ease;
}

.gotazil-fsc-btn-early:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(33, 124, 126, 0.4);
    background: #2bb673;
}

.footer-afiliado {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    max-width: 800px;
    text-align: center;
}

.footer-afiliado p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 600px) {
    .footer-afiliado {
        margin: 15px 10px;
        padding: 12px;
    }
    
    .footer-afiliado p {
        font-size: 0.85rem;
    }
} 