@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

*{
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
    list-style: none;
    border-collapse: collapse;
    text-decoration: none;
}

html{
    font-size: 62.5%;
}

body{
    font-size: 1.8rem;
    width: 100%;
    font-family: var(--fonte-paragrafos);
    background: #ffffff;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6{
    font-family: var(--fonte-titulos) !important;
}

:root{
    --cor-principal: #8b5cf6;
    --cor-principal-linear: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    --cor-secundaria: #8de0a6;
    --cor-preto: #1f2937;
    --cor-branco: #fff;
    --cor-cinza: #4b5563;
    --fonte-titulos: "Manrope", sans-serif;
    --fonte-paragrafos: 'Montserrat', sans-serif;
}

.sucesso, .erro, .info{
    border-radius: 12px;
    padding: 1.5rem 2.5rem;
    font-weight: 600;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.sucesso{
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--cor-branco);
}

.erro{
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: var(--cor-branco);
}

.info{
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: var(--cor-branco);
}

/* Hero Section */
.container{
    width: 100%;
    min-height: 100vh;
    background: #ffffff;
}

.container>div{
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
}

.home{
    width: 100%;
    max-width: 1400px;
    padding: 8rem 2rem;
    display: flex;
    flex-flow: column nowrap;
    gap: 4rem;
    align-items: center;
}

.premium-badge{
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    color: var(--cor-branco);
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

.premium-badge i{
    font-size: 1.8rem;
}

.home h1{
    font-size: 5.5rem;
    font-weight: 900;
    text-align: center;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-subtitle{
    font-size: 2rem;
    text-align: center;
    color: var(--cor-cinza);
    max-width: 800px;
    font-weight: 500;
    margin-bottom: 2rem;
}

/* Cards de Opções */
.opcoes-venda{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    width: 100%;
    max-width: 1200px;
}

.opcao-card{
    background: #ffffff;
    border-radius: 25px;
    padding: 4rem 3rem;
    border: 2px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.12);
    position: relative;
    transition: all 0.4s ease;
}

.opcao-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 25px 25px 0 0;
    z-index: 1;
}

.opcao-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(139, 92, 246, 0.2);
}

.opcao-card:hover::before{
    transform: scaleX(1);
}

.opcao-badge{
    position: absolute;
    top: -2rem;
    left: 3rem;
    width: 6rem;
    height: 6rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    z-index: 10;
}

.opcao-badge i{
    font-size: 2.8rem;
    color: var(--cor-branco);
}

.opcao-card h3{
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--cor-preto);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.numero-opcao{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.8rem;
    font-weight: 900;
    border: 2px solid #8b5cf6;
    border-radius: 50%;
}

.opcao-content{
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.opcao-content-single{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.opcao-text{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.beneficio-item-venda{
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.beneficio-item-venda i{
    font-size: 1.8rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.beneficio-item-venda p{
    font-size: 1.5rem;
    color: var(--cor-preto);
    font-weight: 600;
    margin: 0;
    text-align: left;
}

.opcao-content img{
    max-width: 250px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

/* Formulário Moderno */
.container form{
    margin: 5rem 0;
    width: 100%;
    max-width: 1000px;
    border-radius: 30px;
    padding: 5rem 4rem;
    color: var(--cor-preto);
    background: #ffffff;
    box-shadow: 
        0 20px 60px rgba(139, 92, 246, 0.15),
        0 5px 20px rgba(236, 72, 153, 0.1);
    display: flex;
    flex-flow: column nowrap;
    gap: 3.5rem;
    border: 2px solid rgba(139, 92, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.container form::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 100%);
}

.form-header{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.form-header i{
    font-size: 4rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-header h2{
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--cor-preto);
}

.form-header p{
    font-size: 1.5rem;
    color: var(--cor-cinza);
    margin: 0;
}

.form-group{
    display: flex;
    gap: 2rem;
    width: 100%;
    flex-wrap: wrap;
}

.input-wrapper{
    flex: 1;
    min-width: 250px;
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper.full-width{
    flex: 1 1 100%;
    min-width: 100%;
}

.input-wrapper i{
    position: absolute;
    left: 2rem;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    pointer-events: none;
}

.input-wrapper input,
.input-wrapper select{
    width: 100%;
    padding: 1.5rem 2rem 1.5rem 5rem;
    border-radius: 15px;
    font-size: 1.6rem;
    border: 2px solid rgba(139, 92, 246, 0.2);
    font-family: var(--fonte-paragrafos);
    transition: all 0.3s ease;
    background: #ffffff;
    color: var(--cor-preto);
}

.input-wrapper input:focus,
.input-wrapper select:focus{
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
    outline: none;
}

.input-wrapper input::placeholder{
    color: #9ca3af;
}

.input-wrapper select{
    cursor: pointer;
}

.form-divider{
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(139, 92, 246, 0.3) 50%, transparent 100%);
    margin: 2rem 0;
}

/* Tipo de Venda Section */
.tipo-venda-section{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    width: 100%;
}

.tipo-venda-option{
    cursor: pointer;
}

.tipo-venda-option input[type="radio"]{
    display: none;
}

.radio-card{
    height: 100%;
    padding: 3rem 2.5rem;
    background: #ffffff;
    border-radius: 20px;
    border: 2px solid rgba(139, 92, 246, 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.tipo-venda-option input[type="radio"]:checked + .radio-card{
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.05);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
    transform: translateY(-4px);
}

.radio-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 1;
}

.radio-card:hover{
    border-color: #8b5cf6;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.15);
}

.radio-card:hover::before{
    transform: scaleX(1);
}

.radio-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.radio-header i{
    font-size: 3rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.radio-badge{
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--cor-branco);
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 700;
}

.radio-badge.popular{
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.radio-card h4{
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--cor-preto);
    margin: 0;
}

.radio-card p{
    font-size: 1.5rem;
    color: var(--cor-cinza);
    line-height: 1.7;
    margin: 0;
}

.radio-alert{
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    margin-top: 0.5rem;
}

.radio-alert i{
    font-size: 1.6rem;
    color: #3b82f6;
}

.radio-alert small{
    font-size: 1.3rem;
    color: #1e40af;
    font-weight: 600;
}

/* Submit Button */
.submit-button{
    width: 320px;
    min-width: 320px;
    max-width: 320px;
    margin: 2rem auto 0;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: var(--cor-branco);
    font-weight: 700;
    font-size: 1.9rem;
    padding: 2rem 4rem;
    border-radius: 50px;
    border: none;
    font-family: var(--fonte-titulos);
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.submit-button:hover{
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4);
}

.submit-button:active{
    transform: translateY(-1px);
}

.submit-button i{
    font-size: 2rem;
}

.g-recaptcha{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Vantagens Section - Timeline */
.vantagens{
    width: 100%;
    padding: 10rem 2rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.02) 0%, rgba(236, 72, 153, 0.02) 100%);
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    gap: 6rem;
}

.vantagens-header{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.badge-processo{
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    color: var(--cor-branco);
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.badge-processo i{
    font-size: 1.8rem;
}

.vantagens-header h2{
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    margin: 0;
}

.vantagens-header p{
    font-size: 1.9rem;
    max-width: 700px;
    color: var(--cor-cinza);
    line-height: 1.7;
    margin: 0;
}

/* Timeline - Zigue-Zague */
.timeline{
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 6rem;
    position: relative;
    padding: 4rem 0;
}

.timeline::before{
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #8b5cf6 0%, #ec4899 100%);
    border-radius: 10px;
}

.timeline-item{
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
}

/* Item da Esquerda */
.timeline-item.left .timeline-content{
    grid-column: 1;
    text-align: right;
}

.timeline-item.left .timeline-marker{
    grid-column: 2;
}

/* Item da Direita */
.timeline-item.right .timeline-marker{
    grid-column: 2;
}

.timeline-item.right .timeline-content{
    grid-column: 3;
    text-align: left;
}

.timeline-marker{
    display: flex;
    justify-content: center;
    z-index: 2;
}

.timeline-number{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: var(--cor-branco);
    font-size: 3rem;
    font-weight: 900;
    box-shadow: 
        0 10px 30px rgba(139, 92, 246, 0.4),
        0 0 0 5px #ffffff,
        0 0 0 8px rgba(139, 92, 246, 0.2);
    position: relative;
}

.timeline-content{
    background: #ffffff;
    padding: 4rem 3.5rem;
    border-radius: 25px;
    border: 2px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.timeline-content::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 1;
}

.timeline-content:hover{
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 70px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
}

.timeline-content:hover::before{
    transform: scaleX(1);
}

.timeline-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    border-radius: 20px;
    margin-bottom: 0.5rem;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.timeline-item.left .timeline-icon{
    margin-left: auto;
}

.timeline-item.right .timeline-icon{
    margin-right: auto;
}

.timeline-icon i{
    font-size: 3.5rem;
    color: var(--cor-branco);
}

.timeline-content h3{
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--cor-preto);
    margin: 0;
}

.timeline-content p{
    font-size: 1.6rem;
    line-height: 1.9;
    color: var(--cor-cinza);
    margin: 0;
}

.timeline-tags{
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.timeline-item.left .timeline-tags{
    justify-content: flex-end;
}

.timeline-item.right .timeline-tags{
    justify-content: flex-start;
}

.timeline-tags span{
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #8b5cf6;
}

.timeline-tags i{
    font-size: 1.4rem;
}

/* Motivos Section - Cards Grid */
.motivos{
    width: 100%;
    max-width: 1400px;
    padding: 10rem 2rem;
    display: flex;
    flex-flow: column nowrap;
    gap: 6rem;
    align-items: center;
    margin: 0 auto;
    background: #ffffff;
}

.motivos-header{
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
}

.motivos-header h2{
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    margin: 0;
}

.motivos-subtitle{
    font-size: 1.9rem;
    color: var(--cor-cinza);
    line-height: 1.6;
    margin: 0;
}

.motivos-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    width: 100%;
}

.motivo-card{
    background: #ffffff;
    padding: 4rem 3rem;
    border-radius: 25px;
    border: 2px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.1);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.motivo-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6 0%, #ec4899 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.motivo-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
}

.motivo-card:hover::before{
    transform: scaleX(1);
}

.motivo-card.destaque{
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 
        0 15px 50px rgba(139, 92, 246, 0.15),
        0 0 0 3px rgba(139, 92, 246, 0.1);
}

.motivo-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 7rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.motivo-icon i{
    font-size: 3.2rem;
    color: var(--cor-branco);
}

.motivo-card h3{
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--cor-preto);
    margin: 0;
    line-height: 1.3;
}

.motivo-card p{
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--cor-cinza);
    margin: 0;
    flex: 1;
}

.motivo-badge{
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border-radius: 50px;
    align-self: flex-start;
}

.motivo-badge i{
    font-size: 1.4rem;
    color: #10b981;
}

.motivo-badge span{
    font-size: 1.3rem;
    font-weight: 700;
    color: #059669;
}

.motivo-cta{
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    border-radius: 50px;
    align-self: flex-start;
    animation: pulse-cta 2s ease-in-out infinite;
}

@keyframes pulse-cta{
    0%, 100%{
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.7);
    }
    50%{
        box-shadow: 0 0 0 15px rgba(139, 92, 246, 0);
    }
}

.motivo-cta i{
    font-size: 1.6rem;
    color: var(--cor-branco);
    animation: bounce-arrow 1.5s ease-in-out infinite;
}

@keyframes bounce-arrow{
    0%, 100%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-5px);
    }
}

.motivo-cta span{
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cor-branco);
}

.loader{
    display: none;
    width: 5rem;
    height: 5rem;
    border: 0.4rem solid rgba(139, 92, 246, 0.2);
    border-top: 0.4rem solid #8b5cf6;
    border-radius: 50%;
    animation: rotate-loader 1s linear infinite;
}

@keyframes rotate-loader{
    100%{
        transform: rotate(360deg);
    }
}

/* WhatsApp Button */
#robbu-whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#robbu-whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

#robbu-whatsapp-button img {
    width: 3.5rem;
}

.rwb-tooltip {
    position: absolute;
    right: 7rem;
    background: var(--cor-preto);
    color: var(--cor-branco);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1.4rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#robbu-whatsapp-button:hover .rwb-tooltip {
    opacity: 1;
}

/* ===== FOOTER MODERNO ===== */

.container-footer {
    width: 100%;
}

.footer-cta {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    padding: 8rem 2rem;
    text-align: center;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--cor-branco);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 4rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.6rem 3.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: 320px;
    min-width: 320px;
    max-width: 320px;
    justify-content: center;
}

.btn-primary {
    background: var(--cor-branco);
    color: #8b5cf6;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: #ec4899;
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-4px);
}

.footer-main {
    padding: 6rem 0 4rem;
    background: #ffffff;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--cor-preto);
}

.footer-logo i {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.8rem;
}

.footer-brand p {
    font-size: 1.6rem;
    color: #6b7280;
    line-height: 1.6;
}

.footer-links h3,
.footer-categories h3,
.footer-contact h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cor-preto);
    margin-bottom: 1.5rem;
}

.footer-links,
.footer-categories {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-links ul,
.footer-categories ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a,
.footer-categories a {
    color: #6b7280;
    font-size: 1.4rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-categories a:hover {
    color: #8b5cf6;
    transform: translateX(5px);
}

.footer-contact{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

.contact-item i {
    font-size: 2rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-item span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
}

.contact-item p {
    font-size: 1.4rem;
    color: var(--cor-preto);
    font-weight: 500;
    margin: 0;
}

.footer-social {
    padding: 4rem 0;
    background: #f8fafc;
    border-top: 1px solid rgba(139, 92, 246, 0.08);
}

.footer-social .footer-content {
    grid-template-columns: 1fr 1fr;
}

.social-links h3,
.newsletter h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cor-preto);
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    color: #8b5cf6;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    color: var(--cor-branco);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.newsletter p {
    font-size: 1.4rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    color: var(--cor-preto);
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: #9ca3af;
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.newsletter-form button {
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    border: none;
    border-radius: 12px;
    color: var(--cor-branco);
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.footer-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.footer-stats .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    min-width: 80px;
}

.footer-stats .stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-stats .stat-label {
    font-size: 1.2rem;
    color: #9ca3af;
    font-weight: 500;
}

.footer-bottom {
    padding: 2rem 0;
    background: #f1f5f9;
    border-top: 1px solid rgba(139, 92, 246, 0.08);
}

.footer-bottom .footer-content{
    grid-template-columns: 1fr;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-copyright p {
    font-size: 1.4rem;
    color: #9ca3af;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #6b7280;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: #8b5cf6;
}

/* Responsividade */
@media(max-width: 1024px){
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .opcoes-venda{
        grid-template-columns: 1fr;
    }
    
    .tipo-venda-section{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 950px){
    .container form{
        width: 95%;
        padding: 4rem 3rem;
    }
}

@media (max-width: 768px){
    .home h1{
        font-size: 4.5rem;
    }
    
    .hero-subtitle{
        font-size: 1.8rem;
    }
    
    .opcao-content{
        flex-direction: column;
    }
    
    .opcao-content img{
        max-width: 100%;
    }
    
    /* Timeline em modo vertical no mobile */
    .timeline{
        max-width: 100%;
        padding: 2rem 0;
    }
    
    .timeline::before{
        left: 3.5rem;
        transform: none;
    }
    
    .timeline-item{
        display: flex;
        flex-direction: row;
        grid-template-columns: none;
        gap: 2rem;
        align-items: center;
    }
    
    .timeline-item.left,
    .timeline-item.right{
        flex-direction: row;
        align-items: center;
    }
    
    .timeline-item.left .timeline-marker,
    .timeline-item.right .timeline-marker{
        order: 1;
        flex-shrink: 0;
        align-self: center;
    }
    
    .timeline-item.left .timeline-content,
    .timeline-item.right .timeline-content{
        order: 2;
        text-align: left;
        flex: 1;
    }
    
    .timeline-item.left .timeline-icon,
    .timeline-item.right .timeline-icon{
        margin-left: 0;
        margin-right: auto;
    }
    
    .timeline-item.left .timeline-tags,
    .timeline-item.right .timeline-tags{
        justify-content: flex-start;
    }
    
    .timeline-number{
        width: 7rem;
        height: 7rem;
        font-size: 2.6rem;
    }
    
    .timeline-content{
        padding: 3rem 2.5rem;
    }
    
    .timeline-icon{
        width: 7rem;
        height: 7rem;
    }
    
    .timeline-icon i{
        font-size: 3rem;
    }
    
    .vantagens-header h2{
        font-size: 3.8rem;
    }
    
    .motivos-grid{
        grid-template-columns: repeat(2, 1fr);
    }
    
    .motivos-header h2{
        font-size: 3.8rem;
    }
    
    .form-header h2{
        font-size: 2.4rem;
    }
    
    .form-header i{
        font-size: 3.5rem;
    }
}

@media (max-width: 760px){
    .form-group{
        flex-direction: column;
    }

    .input-wrapper{
        min-width: 100%;
    }
}

@media(max-width: 505px){
    html{
        font-size: 50%;
    }

    .home img{
        width: 100%;
    }

    .container form{
        padding: 3.5rem 2.5rem;
    }
    
    .motivos-grid{
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .footer-social .footer-content {
        grid-template-columns: 1fr !important;
    }
    
    .social-icons{
        justify-content: center;
    }
    
    .footer-stats{
        justify-content: center;
    }
    
    /* Ajustar largura dos botões para mobile */
    .btn-primary, .btn-secondary, .submit-button {
        width: 240px !important;
        min-width: 240px !important;
        max-width: 240px !important;
    }
}

@media(max-width: 768px){
    /* Ajustar largura dos botões para tablets */
    .btn-primary, .btn-secondary, .submit-button {
        width: 280px !important;
        min-width: 280px !important;
        max-width: 280px !important;
    }
}

@media(max-width: 370px){
    html{
        font-size: 45%;
    }
}
