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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
header {
    background: white;
    color: #333;
    padding: 10px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.container {
   
    margin: 0 0;
    padding: 0 0px;
}

header .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    
}

.logo-image {
    
    width: 500px;
    display: block;
    gap:0px;
}
.zap{
    width: 34px;
    height: 34px;
   
}
nav{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    
}
nav a {
    color: #333;
    text-decoration: none;
    margin-left: 30px;
    transition: opacity 0.3s;
    align-items: center;
    display: flex;
    align-items: center;
    gap: 6px;
   
}nav a img{
    width: 30px;
    height: 30px;
}
nav a.btn-contratar {
    background: #ff6b35;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

nav a.btn-contratar:hover {
    background: #ff5520;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}


    .laner{
        
       
    }
    .laner{
        background: #3c35ff;
        color: white;
        border-radius: 50px;
        align-items: center;
        display: flex;
        
        color: white;
        transition: all 0.3s;   
    }
    .laner:hover {
    background: #208cff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}


nav a[href="#cadastro"] {
    background: #ff6b35;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

nav a[href="#cadastro"]:hover {
    background: #ff5520;
    opacity: 1;
}

nav a:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 80px 10px;
    height: auto;
    display: flex;  
    flex-direction: row;
    justify-content:center;
    align-items: center;
    flex-wrap: wrap;
    
}

.hero-copy {
    text-align: left;
}

.hero-copy .cta-button {
    margin-top: 25px;
}

.hero-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-copy {
    flex: 1;
    position: relative;
    
    border-radius: 24px; 
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    color: white;
    overflow: hidden;
    
}

.hero-imagem{
    height: 80vh;
 
}
.hero-imagem2{
    height: 80vh;
    display:flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 32, 80, 0)
 
}

.hero-copy::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 32, 80, 0);
    pointer-events: none;
}

.hero-copy h1,
.hero-copy p,
.hero-copy .cta-button {
    position: relative;
    z-index: 1;
}

.hero-form-container {
    display: flex;
    flex-direction: column;
        background:black; 
    padding: 24px;
    border-radius: 16px;
    color: #333;
    box-shadow: 0 20px 50px rgba(221, 83, 83, 0);
}

.hero-form-container h2,
.hero-form-container p {
    color: #333;
}

.hero-form-container .form-group {
    margin-bottom: 14px;
}

.hero-form-container .submit-btn {
    padding: 12px;
}

.hero-form-container input {
    padding: 10px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    background: #ff6b35;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.cta-wpp-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-wpp-icon svg {
    width: 100%;
    height: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Benefits Section */
.benefits {
    padding: 80px 30vh;
    background: #f8f9fa;
    
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #0066cc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 48px;
    height: 48px;
}

.benefit-card h3 {
    color: #0066cc;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #666;
    font-size: 14px;
}

/* Form Section */
.form-section {
    position: relative;
    padding: 80px 0;
    background: url('fundo.png') center/cover no-repeat fixed;
}

.form-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    pointer-events: none;
}

.form-section .container {
    position: relative;
    z-index: 1;
}


.sp-note {
    background: #fff8e6;
    border-left: 4px solid #ffb74d;
    padding: 12px 16px;
    border-radius: 6px;
    color: #6a4a00;
    margin-bottom: 18px;
    font-weight: 600;
    font-size: 14px;
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-container h2 {
    color: #0066cc;
    margin-bottom: 10px;
    font-size: 28px;
}

.form-container p {
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: #0066cc;
    background-color: #f0f5ff;
}

.form-group input::placeholder {
    color: #999;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.submit-btn:active {
    transform: translateY(0);
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25d366;
    color: white;
    border-radius: 50px;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 200;
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.2);
}

.whatsapp-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon svg {
    width: 100%;
    height: 100%;
}

.error-message {
    color: #d32f2f;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.success-message {
    background: #4caf50;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: none;
    text-align: center;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
}

footer p {
    opacity: 0.8;
}

/* Planos Section */
.planos-detalhados {
    padding: 40px 20px;
    background: white;
}

.planos-detalhados .container {
    max-width: 1180px;
    margin: 0 auto;
}

.plano-categoria {
    margin-bottom: 28px;
}

.plano-categoria-title {
    font-size: 20px;
    color: #0066cc;
    margin-bottom: 6px;
    font-weight: 700;
}

.plano-categoria-desc {
    color: #666;
    font-size: 13px;
    margin-bottom: 12px;
    font-weight: 500;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-bottom: 24px;
    align-items: stretch;
    justify-items: center;
}

.plano-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 14px;
    padding: 18px;
    width: 100%;
    max-width: 320px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 300px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.plano-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.12);
    border-color: #0066cc;
}

.plano-card-destaque {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    border: 1px solid #0066cc;
}

.plano-card-destaque:hover {
    box-shadow: 0 12px 28px rgba(0, 102, 204, 0.25);
}

.plano-card-destaque .plano-valor,
.plano-card-destaque .plano-desc,
.plano-card-destaque .feature {
    color: white;
}

.plano-badge {
    position: absolute;
    top: -8px;
    right: 14px;
    background: #ff6b35;
    color: white;
    padding: 4px 10px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.plano-valor {
    font-size: 18px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 10px;
    padding-top: 8px;
}

.plano-desc {
    color: #666;
    font-size: 13px;
    margin-bottom: 12px;
    flex-grow: 1;
    line-height: 1.4;
}

.plano-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
    text-align: left;
}

.feature {
    color: #555;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.3;
}

.feature::before {
    content: '';
    flex-shrink: 0;
}

.plano-btn {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    align-self: center;
    margin-top: auto;
}

.plano-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 102, 204, 0.3);
}

.plano-card-destaque .plano-btn {
    background: #ff6b35;
}

.plano-card-destaque .plano-btn:hover {
    background: #ff5520;
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    #none{
        display:none;
    }
    
    .zap{

        height: 60px;
        width: 60px;

    }
    .logo-image {
        width: 120px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

   
   .hero-imagem{
        width: 100%;
   }
   .hero-imagem2{
    display:none;
   }
   .logo-image{
    width: 250px   ;
   }
   header .container{
    display: flex;
    flex-direction: column;
    
   }
   header nav{
    display: flex;
    flex-direction: row;
    
   }
   .hero{
    height:auto;
    padding: 0px;
   }
   .hero-imagem {
    height: auto;
   }
   .benefits{
    padding: 0px;
   }
    nav {
        display: flex;
        gap: 8px;
        align-items: center;
        flex-wrap: wrap;
    }

    nav a {
        margin-left: 0;
        font-size: 13px;
        padding: 8px 12px;
        white-space: nowrap;
    }

    nav a[href="#cadastro"] {
        padding: 8px 12px;
        font-size: 13px;
    }

    nav a.btn-contratar {
        display: none;
    }
   


    .hero-row {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-copy {
        max-width: 100%;
        margin-bottom: 30px;
        padding: 20px;
        min-height: auto
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .hero-form-container {
        max-width: 100%;
        padding: 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .form-container {
        padding: 30px 20px;
        border-radius: 0;
        box-shadow: none;
    }

    .whatsapp-float {
        padding: 0px;
        width: 56px;
        height: 56px;
        font-size: 0;

    }

    .whatsapp-icon {
        width: 32px;
        height: 32px;
    }

    .planos-detalhados {
        padding: 40px 15px;
    }

    .planos-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .plano-card {
        padding: 15px;
        min-height: auto;
    }

    .plano-categoria-title {
        font-size: 18px;
    }

    .plano-valor {
        font-size: 18px;
    }

    .plano-btn {
        width: 100%;
    }


    footer {
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;   
        
    }
}