/* Reset e estilos globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.8rem;
    color: #333;
    font-size: 1.1rem;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header e Navegação */
.header {
    background: #fff;
    box-shadow: none;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0rem 1rem 0.5rem;
    min-height: 70px;
}

.logo-area {
    display: flex;
    margin-top: 8px;
}

.logo-img {
    width: 210px;
    height: auto;
    object-fit: contain;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    background: #ff6600;
    border-radius: 0 0 20px 20px;
    padding: 0.5rem 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 1rem;
    margin-right: 1rem;
    min-height: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
    padding: 0.3rem 0.2rem;
}

.nav-menu a:hover {
    color: #222;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.cart-icon {
    color: #fff;
    font-size: 1.3rem;
    position: relative;
    text-decoration: none;
}
.cart-count {
    background: #222;
    color: #fff;
    border-radius: 50%;
    font-size: 0.8rem;
    padding: 2px 6px;
    position: absolute;
    top: -10px;
    right: -12px;
}

.quote-btn {
    background: #fff;
    color: #ff6600;
    font-weight: 700;
    padding: 0.7rem 1.5rem;
    border-radius: 0 20px 20px 0;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.3s, color 0.3s;
    margin-left: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.quote-btn:hover {
    background: #222;
    color: #fff;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: none;
}
.hero-overlay::before {
    content: '';
    position: absolute;
    right: 0; top: 0; height: 100%; width: 70vw;
    background: rgba(0,0,0,0.8);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 600px;
    margin-right: 8vw;
    text-align: left;
}
.hero-subtitle {
    color: #ff6600;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: inline-block;
}
.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.1;
}
.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.2rem;
    color: #eee;
    max-width: 90%;
}
.hero-buttons {
    display: flex;
    gap: 1.2rem;
}
.hero-btn {
    padding: 1rem 2.2rem;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    border: none;
    display: inline-block;
}
.hero-btn.orange {
    background: #ff6600;
    color: #fff;
}
.hero-btn.orange:hover {
    background: #fff;
    color: #ff6600;
    border: 2px solid #ff6600;
}
.hero-btn.white {
    background: #fff;
    color: #222;
}
.hero-btn.white:hover {
    background: #ff6600;
    color: #fff;
    border: 2px solid #fff;
}

/* Sobre */
/* Removido: .about, .about h2 */

/* Contato */
/* Removido: .contact, .contact h2 */

/* Footer */
.footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 4rem;
}

.footer-favicon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    margin-right: 10px;
    vertical-align: middle;
    border-radius: 6px;
}

.footer p {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    letter-spacing: 0.5px;
}

/* RCC SECTION */
.rcc-section {
    background: #fff;
    padding: 5rem 1rem;
    display: flex;
    justify-content: center;
}
.rcc-container {
    display: flex;
    align-items: center;
    max-width: 1100px;
    width: 100%;
    gap: 3rem;
    flex-wrap: wrap;
}
.rcc-img-area {
    flex: 1 1 320px;
    display: flex;
    justify-content: center;
    position: relative;
}
.rcc-images-modern {
    position: relative;
    width: 320px;
    height: 280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rcc-img-item {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rcc-img-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}
.rcc-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.rcc-img-main {
    width: 280px;
    height: 240px;
    position: relative;
    z-index: 3;
}
.rcc-img-secondary {
    width: 150px;
    height: 150px;
    top: 80px;
    right: 0;
    z-index: 2;
}
.rcc-img-accent {
    width: 120px;
    height: 120px;
    bottom: 0;
    left: 0;
    z-index: 1;
}
/* Gradiente overlay para dar profundidade */
.rcc-img-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(12, 102, 65, 0.1) 0%, rgba(255, 102, 0, 0.1) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.rcc-img-item:hover::before {
    opacity: 1;
}
.rcc-content {
    flex: 2 1 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}
.rcc-subtitle {
    color: #0C6641;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}
.rcc-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    line-height: 1.1;
}
.rcc-desc {
    color: #222;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 500px;
}
.rcc-list-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.rcc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    font-size: 1.1rem;
}
.rcc-check {
    color: #ff6600;
    font-size: 1.2rem;
    margin-right: 0.5rem;
    font-weight: bold;
}
.rcc-btn {
    background: #ff6600;
    color: #fff;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 7px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.3s, color 0.3s;
    display: inline-block;
    margin-top: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.rcc-btn:hover {
    background: #222;
    color: #fff;
}
@media (max-width: 900px) {
    .rcc-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .rcc-images-modern {
        width: 280px;
        height: 240px;
    }
    .rcc-img-main {
        width: 170px;
        height: 170px;
    }
    .rcc-img-secondary {
        width: 130px;
        height: 130px;
        top: 70px;
    }
    .rcc-img-accent {
        width: 100px;
        height: 100px;
    }
    .rcc-content {
        align-items: center;
        text-align: center;
    }
    .rcc-list-grid {
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .rcc-images-modern {
        width: 250px;
        height: 200px;
    }
    .rcc-img-main {
        width: 150px;
        height: 150px;
    }
    .rcc-img-secondary {
        width: 110px;
        height: 110px;
        top: 60px;
    }
    .rcc-content .rcc-subtitle:first-of-type {
        margin-top: 0.1rem;
    }
    .rcc-content {
        gap: 0.7rem;
    }
    .rcc-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Responsividade */
@media (max-width: 1100px) {
    .hero-content {
        margin-right: 2vw;
    }
}
@media (max-width: 900px) {
    .hero-content {
        margin-right: 0;
        max-width: 90vw;
    }
    .hero-overlay::before {
        width: 100vw;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
}
@media (max-width: 700px) {

    .hero h1 {
        font-size: 2rem;
    }
    .hero {
        min-height: 350px;
        height: 60vh;
    }
}

/* BENEFÍCIOS SECTION (FAQ) */
.beneficios-section {
    background: #fff;
    padding: 5rem 1rem 4rem 1rem;
    display: flex;
    justify-content: center;
}
.beneficios-container-img {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 0 auto;
    position: relative;
}
.beneficios-container {
    flex: 1 1 420px;
    min-width: 320px;
}
.beneficios-imgs {
    display: block;
    position: relative;
    width: 420px;
    height: 240px;
    max-width: 100%;
    margin: 0 auto;
}
.beneficios-subtitle {
    color: #0C6641;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    display: block;
}
.beneficios-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.beneficios-faq-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    width: 100%;
}
.faq-col {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    width: 100%;
    max-width: 500px;
}
.faq-item {
    width: 100%;
    max-width: 500px;
}
.faq-item {
    background: #f7f7f7;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    overflow: hidden;
    border: 1px solid #ececec;
}
.faq-question {
    width: 100%;
    background: #222;
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    outline: none;
    padding: 1rem 1.2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
}
.faq-item.active .faq-question {
    background: #ff6600;
    color: #fff;
}
.faq-arrow {
    font-size: 1.1rem;
    margin-left: 0.7rem;
}
.faq-answer {
    display: none;
    padding: 1rem 1.2rem 1.2rem 1.2rem;
    color: #444;
    font-size: 1rem;
    background: #fff;
    border-top: 1px solid #ececec;
}
.faq-item.active .faq-answer {
    display: block;
}
@media (max-width: 900px) {
    .beneficios-faq-grid {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    .faq-col {
        max-width: 100%;
        align-items: center;
    }
    .faq-item {
        max-width: 100%;
    }
}
@media (max-width: 1100px) {
    .beneficios-collage-moderna {
        display: none;
    }
    .beneficios-container-img {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .beneficios-imgs {
        width: 270px;
        height: 150px;
    }
    .img1 {
        width: 120px;
        height: 90px;
        top: -10px;
        left: -10px;
    }
    .img2 {
        width: 80px;
        height: 60px;
        top: 15px;
        left: 70px;
    }
    .img3 {
        width: 60px;
        height: 70px;
        top: 60px;
        left: 20px;
    }
    .img4 {
        width: 60px;
        height: 60px;
        top: 50px;
        left: 130px;
    }
}
@media (max-width: 700px) {
    .beneficios-imgs {
        width: 140px;
        height: 80px;
    }
    .img1 {
        width: 60px;
        height: 40px;
        top: 0;
        left: 0;
    }
    .img2 {
        width: 40px;
        height: 30px;
        top: 10px;
        left: 40px;
    }
    .img3 {
        width: 30px;
        height: 35px;
        top: 30px;
        left: 15px;
    }
    .img4 {
        width: 30px;
        height: 30px;
        top: 25px;
        left: 70px;
    }
}

/* PORQUE ESCOLHER SECTION */
.porque-section {
    background: #f9f9f9;
    padding: 5rem 1rem 4rem 1rem;
    display: flex;
    justify-content: center;
}
.porque-container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}
.porque-subtitle {
    color: #0C6641;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    display: block;
}
.porque-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 2.5rem;
}
.porque-beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}
.porque-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 2.2rem 1.5rem 1.7rem 1.5rem;
    flex: 1 1 220px;
    max-width: 250px;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    will-change: transform;
    contain: layout style paint;
}
.porque-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
}
.porque-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ff6600;
}
.porque-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
    margin: 0 auto 1rem auto;
}
.porque-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.7rem;
}
.porque-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}
@media (max-width: 900px) {
    .porque-beneficios-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        align-items: center;
    }
    .porque-card {
        max-width: 350px;
        width: 100%;
        margin: 0 auto;
    }
}

/* SANVALE SECTION */
.sanvale-section {
    background: linear-gradient(90deg, #f9f9f9 60%, #fff 100%);
    padding: 5rem 1rem 4rem 1rem;
    display: flex;
    justify-content: center;
}
.sanvale-container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    flex-wrap: wrap;
}
.sanvale-left {
    flex: 1 1 320px;
    min-width: 270px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}
.sanvale-title {
    color: #222;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}
.sanvale-desc {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.sanvale-selo-box {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    margin-top: 0.5rem;
    margin-bottom: 0;
    vertical-align: middle;
}
.sanvale-selo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: inline-block;
    margin: 0;
}
.sanvale-selo-label {
    color: #ffb300;
    font-weight: 700;
    font-size: 1.15rem;
    white-space: nowrap;
    margin: 0;
    line-height: 1;
    display: inline-block;
}
.sanvale-right {
    flex: 2 1 400px;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
}
.sanvale-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 1.1rem 1.2rem;
    margin-bottom: 0.2rem;
    width: 100%;
    will-change: transform;
    contain: layout style paint;
}
.sanvale-feature-icon {
    font-size: 2rem;
    color: #ff6600;
    margin-top: 0.2rem;
}
.sanvale-feature h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 0.2rem;
}
.sanvale-feature p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}
.sanvale-btn {
    margin-top: 1.2rem;
    background: #ff6600;
    color: #fff;
    font-weight: 700;
    padding: 1rem 2.2rem;
    border-radius: 7px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background 0.3s, color 0.3s;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.sanvale-btn:hover {
    background: #222;
    color: #fff;
}
@media (max-width: 900px) {
    .sanvale-container {
        flex-direction: column;
        gap: 2.5rem;
        align-items: center;
    }
    .sanvale-left, .sanvale-right {
        min-width: 0;
        width: 100%;
        align-items: flex-start;
    }
}

/* COMO FUNCIONA - NOVO LAYOUT */
.how-section {
    background: #fff;
    padding: 6rem 1rem 4rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
}
.how-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 2.5rem;
}
.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    width: 100%;
    margin-bottom: 2.5rem;
    margin-top: 2rem;
    justify-content: center;
    overflow: visible;
}
.how-card:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
}
.how-card:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
}
.how-card {
    background: #fafafa;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 2.2rem 1.5rem 2.7rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    position: relative;
    min-height: 180px;
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s, color 0.2s;
    will-change: transform;
    overflow: visible;
}
.how-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.7rem;
    transition: color 0.2s;
}
.how-card p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    transition: color 0.2s;
}
.how-icon {
    font-size: 2.3rem;
    color: #ff6600;
    margin-top: 0.2rem;
    flex-shrink: 0;
    transition: color 0.2s;
}
.how-card::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 18px;
    background: #ff6600;
    clip-path: polygon(0 100%, 100% 0, 100% 100%, 0% 100%);
}
.how-card:hover {
    background: #111;
    color: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    z-index: 2;
}
.how-card:hover h3,
.how-card:hover p {
    color: #fff;
}
.how-card:hover .how-icon {
    color: #ff6600;
}
.how-card:hover::after {
    background: #ff6600;
    clip-path: polygon(0 100%, 100% 0, 100% 100%, 0% 100%);
}
.how-btn-row {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}
.how-btn {
    display: flex;
    align-items: stretch;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.how-btn-text {
    background: #ff6600;
    color: #fff;
    padding: 1rem 2.2rem;
    display: flex;
    align-items: center;
    transition: background 0.2s, color 0.2s;
}
.how-btn-arrow {
    background: #222;
    color: #fff;
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    transition: background 0.2s, color 0.2s;
}
.how-btn:hover .how-btn-text {
    background: #222;
    color: #fff;
}
.how-btn:hover .how-btn-arrow {
    background: #ff6600;
    color: #fff;
}
.how-badge {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: #ff6600;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    z-index: 5;
    border: 4px solid #fff;
}
@media (max-width: 900px) {
    .how-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .how-card:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
    }
    .how-card:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
    }
    .how-badge {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        top: -18px;
    }
}

@media (max-width: 685px) {
    .how-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .how-card {
        padding: 1.5rem 1rem;
        min-height: 150px;
    }
    .how-card:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
    }
    .how-card:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
    }
    .how-card h3 {
        font-size: 1.1rem;
    }
    .how-badge {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        top: -16px;
    }
}

/* BOTÃO PADRÃO ESTILO SANVALE */
.btn {
    display: inline-flex;
    align-items: stretch;
    border: none;
    outline: none;
    background: none;
    padding: 0;
    margin: 0;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.btn-content {
    background: #ff6600;
    color: #fff;
    padding: 1rem 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: background 0.2s, color 0.2s;
}
.btn-arrow {
    background: #222;
    color: #fff;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    transition: background 0.2s, color 0.2s;
}
.btn:hover .btn-content, .btn:focus .btn-content {
    background: #222;
    color: #fff;
}
.btn:hover .btn-arrow, .btn:focus .btn-arrow {
    background: #ff6600;
    color: #fff;
}

/* Remover borda arredondada de variações antigas */
.hero-btn, .rcc-btn, .sanvale-btn, .how-btn, .quote-btn, .submit-button {
    border-radius: 0 !important;
    padding: 0 !important;
    background: none !important;
    color: inherit !important;
    box-shadow: none !important;
}

/* Ajuste para botões em formulários */
.submit-button.btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 600px) {
    .btn-content {
        padding: 1rem 1rem;
        font-size: 1rem;
    }
    .btn-arrow {
        padding: 1rem 1rem;
        font-size: 1.1rem;
    }
}

.beneficios-collage {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
}
.beneficio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.img-grande {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
    min-height: 320px;
}
.img-avaliacao {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    min-height: 140px;
}
.img-verde {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    min-height: 140px;
}
.img-media {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    min-height: 140px;
}
@media (max-width: 700px) {
    .beneficios-collage {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 18px;
    }
    .img-grande, .img-avaliacao, .img-verde, .img-media {
        grid-column: 1 / 2 !important;
        grid-row: auto !important;
        min-height: 120px;
    }
}

.beneficios-collage-moderna {
    position: relative;
    width: 620px;
    height: 420px;
    margin: 0 auto;
}

.collage-item {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    transition: transform 0.2s, box-shadow 0.2s;
}

.collage-item-1 {
    width: 320px;
    height: 230px;
    top: 0;
    left: 30;
    z-index: 3;
}
.collage-item-2 {
    width: 260px;
    height: 170px;
    top: 80px;
    left: 340px;
    z-index: 4;
}

.collage-item-4 {
    width: 200px;
    height: 300px;
    top: 240px;
    left: 80px;
    z-index: 1;
}
.collage-item-5 {
        width: 180px;
        height: 280px;
        top: 260px;
        left: 300px;
        z-index: 2;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .beneficios-collage-moderna {
        width: 98vw;
        height: 320px;
    }
    .collage-item-1 {
        width: 70vw;
        height: 120px;
        left: 0;
    }
    .collage-item-2 {
        width: 48vw;
        height: 90px;
        left: 50vw;
        top: 30px;
    }
    .collage-item-3 {
        width: 38vw;
        height: 70px;
        left: 0;
        top: 170px;
    }
    .collage-item-4 {
        width: 48vw;
        height: 90px;
        left: 50vw;
        top: 160px;
    }
}

.pipedriveWebForms {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 600px;
}

body, p, a, li, input, textarea, button, label, span, .btn, .faq-question, .faq-answer, .rcc-desc, .rcc-list, .porque-card p, .sanvale-feature p, .sanvale-desc, .contact-form input, .contact-form textarea, .contact-form label, .footer p {
    font-size: 1rem;
}

h1, h2 {
    font-size: unset;
}

/* Media Queries para Mobile */
@media (max-width: 768px) {
    body {
        font-size: 0.95rem;
    }

    .hero {
        height: 70vh;
        min-height: 400px;
        margin-top: 70px;
    }

    .hero-content {
        margin-right: 0;
        max-width: 90%;
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .rcc-container {
        padding: 2rem 1rem;
    }

    .rcc-title {
        font-size: 1.8rem;
    }

    .rcc-subtitle {
        font-size: 1.2rem;
    }

    .rcc-img {
        width: 100%;
        max-width: 300px;
        height: 200px;
    }

    .beneficios-container {
        padding: 2rem 1rem;
    }

    .beneficios-title {
        font-size: 1.8rem;
    }

    .faq-item {
        margin-bottom: 1rem;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 0.8rem 1rem;
    }

    .faq-answer {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }

    .porque-beneficios-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .porque-card {
        max-width: 100%;
        padding: 1.5rem 1rem;
    }

    .porque-title {
        font-size: 1.8rem;
    }

    .sanvale-container {
        padding: 2rem 1rem;
    }

    .sanvale-title {
        font-size: 1.8rem;
    }

    .sanvale-feature {
        padding: 1rem;
    }

    .sanvale-feature h3 {
        font-size: 1rem;
    }

    .how-section {
        padding: 4rem 1rem 3rem 1rem;
    }

    .how-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .how-card {
        padding: 1.5rem 1rem;
        min-height: 150px;
    }

    .how-card h3 {
        font-size: 1.1rem;
    }

    .how-badge {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        top: -16px;
    }

    .btn-content {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .btn-arrow {
        padding: 0.8rem 1rem;
        font-size: 1.1rem;
    }

    .footer {
        padding: 2rem 1rem;
    }

    .footer p {
        font-size: 0.9rem;
    }

    .footer-favicon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {

    .menu-toggle {
        margin-left: 0.7rem;
        margin-right: 0;
        position: static;
    }
    .hero {
        margin-top: 52px;
        height: 360px;
        min-height: 360px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-bottom: 0;
        position: relative;
    }
    .hero-overlay {
        align-items: center;
        justify-content: center;
        background: none;
    }
    .hero-overlay::before {
        width: 100vw;
        left: 0;
        right: 0;
        background: rgba(0,0,0,0.88);
        clip-path: none;
    }
    .hero-content {
        margin: 0 auto;
        padding: 1.2rem 0.5rem 0.7rem 0.5rem;
        text-align: center;
        max-width: 95vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .hero h1 {
        font-size: 1.6rem;
        margin-bottom: 0.7rem;
        line-height: 1.15;
    }
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
    }
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    .hero-buttons {
        gap: 0.7rem;
        flex-direction: column;
        align-items: center;
    }
    .btn-content {
        padding: 0.7rem 1.1rem;
        font-size: 1rem;
    }
    .btn-arrow {
        padding: 0.7rem 0.9rem;
        font-size: 1rem;
    }
    .hero-btn {
        min-width: 130px;
    }
    .rcc-img-area {
        justify-content: center;
        width: 100%;
    }
    .rcc-img {
        width: 96vw;
        max-width: 370px;
        height: 200px;
        object-fit: cover;
        border-radius: 14px;
        margin-bottom: 0.3rem;
    }
    .rcc-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .beneficios-section, .porque-section, .sanvale-section, .how-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .beneficios-collage-moderna {
        width: 98vw;
        max-width: 340px;
        height: 180px;
        margin: 0 auto 1.5rem auto;
        position: relative;
    }
    .collage-item-1 {
        width: 150px;
        height: 80px;
        top: 0;
        left: 0;
    }
    .collage-item-2 {
        width: 110px;
        height: 60px;
        top: 20px;
        left: 170px;
    }
    .collage-item-4 {
        width: 90px;
        height: 80px;
        top: 95px;
        left: 30px;
    }
    .collage-item-5 {
        width: 90px;
        height: 80px;
        top: 95px;
        left: 140px;
    }
    .collage-item img {
        border-radius: 12px;
    }
    .hero {
        margin-bottom: 0.2rem;
    }
    .rcc-section,
    .beneficios-section,
    .porque-section,
    .sanvale-section,
    .how-section,
    .contact {
        padding-top: 1.2rem;
        padding-bottom: 1.2rem;
        margin-bottom: 0.2rem;
    }
    .footer {
        padding: 1.2rem 0.5rem;
    }
    .sanvale-selo-box {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 0.7rem;
        margin-bottom: 0.7rem;
    }
    .sanvale-selo {
        margin: 0 auto;
        display: block;
    }
    .rcc-content .rcc-subtitle:first-of-type {
        margin-top: 0.1rem;
    }
    .rcc-content {
        gap: 0.7rem;
    }
    .sanvale-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }
    .contact h2 {
        text-align: center;
        width: 100%;
    }
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #ff6600;
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 1068px) {
    .menu-toggle {
        display: block;
        margin-top: 18px;
    }
   
    .main-nav {
        position: fixed;
        top: 0;
        flex-direction: column;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        padding: 3.5rem 1rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        border-radius: 0;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        margin: 0;
        padding: 0;
        gap: 1rem;
        margin-right: 0.5rem;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        display: block;
        color: #333;
    }

    .nav-actions {
        margin-top: 2rem;
        width: 100%;
    }

    .quote-btn {
        width: 100%;
        justify-content: center;
    }

    /* Menu Toggle Animation */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Overlay quando menu está aberto */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }

    .menu-overlay.active {
        display: block;
    }
}

/* CONTACT SECTION */
.contact {
    background: #f9f9f9;
    padding: 5rem 1rem 4rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1.5rem;
    max-width: 800px;
}

.contact p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    max-width: 700px;
    line-height: 1.6;
}

.contact p:last-of-type {
    margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
    .contact {
        padding: 3rem 1rem 2.5rem 1rem;
    }
    
    .contact h2 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    .contact p {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
    
    .contact p:last-of-type {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 2rem 1rem;
    }
    
    .contact h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .contact p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact p:last-of-type {
        margin-bottom: 1.5rem;
    }
}

/* Otimizações de performance */
.porque-card,
.sanvale-feature {
    will-change: transform;
    contain: layout style paint;
}

.how-card {
    will-change: transform;
}

.how-card:hover,
.porque-card:hover {
    transform: translate3d(0, -7px, 0) scale(1.03);
} 