.elementor-9 .elementor-element.elementor-element-1e50c9c{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-6f7f761 */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== PALETA PROFISSIONAL ========== */
:root {
    --primary-color: #263238;
    --primary-dark: #01579B;
    --secondary-color: #fab72e;
    --secondary-dark: #ffdb28;
    --dark-color: #263238;
    --light-gray: #F5F5F5;
    --whatsapp: #25D366;
}

/* ========== ELEMENTOS GLOBAIS ========== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9em;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 2.8em;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2em;
    color: #666;
}

/* ========== HEADER MELHORADO ========== */
header {
    background: linear-gradient(135deg, #bdbdbdf2 0%, rgb(0 0 0 / 67%) 100%), url(https://images.unsplash.com/photo-1621905251918-48416bd8575a?w=1920&q=80) center / cover no-repeat;
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 111, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 143, 0, 0.15) 0%, transparent 50%);
    animation: pulse-bg 8s ease-in-out infinite;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(248, 249, 250, 1) 0%, transparent 100%);
}

@keyframes pulse-bg {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.header-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.header-badge {
    display: inline-block;
    background: rgba(255, 111, 0, 0.2);
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9em;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 25px;
    animation: fadeInDown 1s ease;
    backdrop-filter: blur(10px);
}

.header-logo {
    font-size: 1.2em;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    text-shadow: 0 0 20px rgba(255, 111, 0, 0.5);
    animation: fadeInDown 1s ease 0.2s both;
}
.header-logo img {
    width: 180px;
}
header h1 {
    font-size: 4em;
    margin-bottom: 25px;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.4);
    position: relative;
    z-index: 1;
    animation: fadeInDown 1s ease 0.4s both;
    line-height: 1.2;
    font-weight: 800;
}

header h1 .highlight {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

header h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 12px;
    background: rgba(255, 111, 0, 0.3);
    z-index: -1;
    animation: expand 1s ease 1.5s both;
}

@keyframes expand {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

header p {
    font-size: 1.4em;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease 0.6s both;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 2px 4px rgba(0,0,0,0.3);
}

.header-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.header-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9em;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.header-feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.header-feature-item span {
    font-size: 1.5em;
}

.cta-button {
   display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: white;
    padding: 12px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s 
ease;
    box-shadow: 0 8px 30px rgba(255, 111, 0, 0.4);
    position: relative;
    z-index
For a positioned box, the 'z-index' property specifies the stack level of the box in the current stacking context and whether the box establishes a local stacking context.

Widely available across major browsers (Baseline since January 2018)
Learn more

Don't show
: 1;
    animation: fadeInUp 1s 
ease 1s both;
    border: 2px solid transparent;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, #BF360C 100%);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 111, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-button::before {
    content: '⚡';
    margin-right: 10px;
    font-size: 1.2em;
    animation: pulse 2s infinite;
}

.cta-button.secondary {
    background: linear-gradient(135deg, #143c7b 0%, #093a63 100%);
    box-shadow: 0 8px 30px rgba(13, 71, 161, 0.4);
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #004D7A 100%);
    box-shadow: 0 12px 40px rgba(13, 71, 161, 0.6);
}

.header-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.header-scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
}

.header-scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: scroll-down 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll-down {
    0% {
        opacity: 0;
        top: 10px;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

.header-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float 15s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* ========== SEÇÃO POR QUE FLYPOWER ========== */
.why-flypower-section {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    padding: 80px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--secondary-color);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.stat-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3.5em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-number::after {
    content: '+';
    color: var(--secondary-color);
}

.stat-label {
    font-size: 1.1em;
    color: #666;
    font-weight: 500;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.diferencial-item {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 35px 25px;
    border-radius: 15px;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
}

.diferencial-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(13, 71, 161, 0.4);
}

.diferencial-item:nth-child(2) {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
}

.diferencial-item:nth-child(3) {
    background: linear-gradient(135deg, #37474F 0%, #263238 100%);
}

.diferencial-item:nth-child(4) {
    background: linear-gradient(135deg, #1565C0 0%, #0D47A1 100%);
}

.diferencial-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.diferencial-item h3 {
    font-size: 1.5em;
    margin-bottom: 12px;
}

.diferencial-item p {
    font-size: 1.05em;
    line-height: 1.6;
    opacity: 0.95;
}

/* ========== SEÇÃO GERADORES ========== */
.geradores-section {
    background: white;
    padding: 80px 20px;
}

.geradores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.gerador-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #f0f0f0;
}

.gerador-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--secondary-color);
}

.gerador-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85em;
    font-weight: bold;
    z-index: 2;
}

.gerador-badge.popular {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.gerador-badge.premium {
    background: linear-gradient(135deg, #37474F 0%, #263238 100%);
}

.gerador-image {
    background: linear-gradient(135deg, #ffffff 0%, #ffe6af 100%);
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.gerador-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,111,0,0.2) 0%, transparent 70%);
}

.gerador-placeholder {
    font-size: 5em;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.gerador-content {
    padding: 30px;
}

.gerador-content h3 {
    font-size: 1.8em;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.gerador-desc {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.gerador-specs {
    list-style: none;
    margin-bottom: 20px;
}

.gerador-specs li {
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.gerador-aplicacoes {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 0.95em;
    color: #555;
}

.gerador-aplicacoes strong {
    color: var(--primary-color);
}

.gerador-cta {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.gerador-cta:hover {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, #BF360C 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 111, 0, 0.4);
}

.geradores-cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.geradores-cta-box h3 {
    font-size: 2em;
    margin-bottom: 15px;
}

.geradores-cta-box p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ========== SEÇÃO LOCAÇÃO MELHORADA ========== */
.locacao-section {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    padding: 80px 20px;
    position: relative;
}

.locacao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.locacao-text h2 {
    font-size: 2.8em;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.locacao-text p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.locacao-destaque {
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    border-left: 4px solid var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 30px;
}

.destaque-icon {
    font-size: 2.5em;
}

.destaque-text strong {
    color: var(--secondary-dark);
    font-size: 1.1em;
}

.locacao-features {
    display: grid;
    gap: 20px;
}

.feature-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-color);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-item h3 {
    color: var(--primary-color);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.feature-item p {
    color: #666;
    font-size: 1em;
}

.locacao-processo {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.locacao-processo h3 {
    text-align: center;
    font-size: 2.2em;
    color: var(--dark-color);
    margin-bottom: 40px;
}

.processo-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.step-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.4);
}

.step-item h4 {
    font-size: 1.2em;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.step-item p {
    color: #666;
    font-size: 0.95em;
}

.step-arrow {
    font-size: 2em;
    color: var(--secondary-color);
    font-weight: bold;
}

/* ========== SEÇÃO SERVIÇOS ========== */
.servicos-section {
    background: white;
    padding: 80px 20px;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.servico-card {
    background: linear-gradient(135deg, #ffffff 0%, #c3c3c3 100%);
    padding: 40px 30px;
    border-radius: 20px;
    color: #141414;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.servico-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transition: all 0.5s ease;
}

.servico-card:hover::before {
    top: -60%;
    right: -60%;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.servico-card:nth-child(2) {
    background: linear-gradient(135deg, #ffffff 0%, #c3c3c3 100%);
}

.servico-card:nth-child(3) {
    background: linear-gradient(135deg, #ffffff 0%, #c3c3c3 100%);
}

.servico-card:nth-child(4) {
    background: linear-gradient(135deg, #ffffff 0%, #c3c3c3 100%);
}

.servico-card:nth-child(5) {
    background: linear-gradient(135deg, #ffffff 0%, #c3c3c3 100%);
}

.servico-card:nth-child(6) {
    background: linear-gradient(135deg, #ffffff 0%, #c3c3c3 100%);
}

.servico-icon {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.servico-card h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.servico-card p {
    font-size: 1.05em;
    line-height: 1.7;
    opacity: 0.95;
}

/* ========== SEÇÃO DEPOIMENTOS ========== */
.depoimentos-section {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    padding: 80px 20px;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.depoimento-card {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border-top: 4px solid var(--secondary-color);
}

.depoimento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.depoimento-card.destaque {
    border-top-color: var(--primary-color);
    background: linear-gradient(135deg, #E3F2FD, #ffffff);
}

.depoimento-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8em;
    font-weight: bold;
}

.depoimento-stars {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.depoimento-texto {
    font-size: 1.1em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.autor-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
}

.autor-info strong {
    display: block;
    color: var(--dark-color);
    font-size: 1.1em;
    margin-bottom: 5px;
}

.autor-info span {
    color: #666;
    font-size: 0.9em;
}

.depoimentos-logos {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.depoimentos-logos p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 25px;
    font-weight: 500;
}

.logos-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 1.1em;
    padding: 12px 25px;
    background: #f8f9fa;
    border-radius: 50px;
    color: #555;
    font-weight: 500;
}

/* ========== SEÇÃO PLANOS MELHORADA ========== */
.planos-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, #37474F 100%);
    padding: 80px 20px;
    color: white;
}

.planos-section .section-badge {
    background: rgba(255, 111, 0, 0.2);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.planos-section .section-header h2 {
    color: white;
}

.planos-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.plano-card {
    background: white;
    color: #333;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.plano-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--secondary-color), var(--secondary-dark));
    border-radius: 20px 20px 0 0;
}

.plano-card.popular {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 3px solid var(--secondary-color);
}

.plano-card.popular::before {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    height: 6px;
}

.plano-card:hover {
    transform: scale(1.08);
    box-shadow: 0 25px 70px rgba(0,0,0,0.35);
}

.plano-badge-top {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.85em;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 111, 0, 0.4);
}

.plano-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.plano-card h3 {
    font-size: 1.8em;
    color: var(--dark-color);
    margin-bottom: 10px;
    margin-top: 20px;
}

.plano-subtitle {
    font-size: 1em;
    color: #666;
    margin-bottom: 25px;
    min-height: 48px;
}

.plano-preco {
    margin-bottom: 30px;
}

.preco-label {
    display: block;
    font-size: 0.9em;
    color: #999;
    margin-bottom: 5px;
}

.preco-desconto {
    display: block;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9em;
    font-weight: bold;
    margin-bottom: 15px;
    display: inline-block;
}

.preco-valor {
    display: block;
    font-size: 2.5em;
    font-weight: bold;
    color: var(--primary-color);
}

.plano-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.plano-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    font-size: 1.05em;
}

.plano-features li::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
}

.plano-button {
    display: block;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.plano-button:hover {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, #BF360C 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 111, 0, 0.4);
}

.plano-button.destaque {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    box-shadow: 0 4px 15px rgba(13, 71, 161, 0.4);
}

.plano-button.destaque:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #004D7A 100%);
    box-shadow: 0 8px 25px rgba(13, 71, 161, 0.6);
}

.plano-obs {
    font-size: 0.85em;
    color: #999;
    font-style: italic;
}

.planos-garantia {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.garantia-icon {
    font-size: 4em;
}

.garantia-text h3 {
    font-size: 1.5em;
    margin-bottom: 8px;
}

.garantia-text p {
    font-size: 1.05em;
    opacity: 0.9;
}

/* ========== SEÇÃO FAQ ========== */
.faq-section {
    background: white;
    padding: 80px 20px;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    border-color: var(--secondary-color);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.2em;
    color: var(--dark-color);
    margin: 0;
    flex: 1;
}

.faq-toggle {
    font-size: 2em;
    color: var(--secondary-color);
    font-weight: bold;
    transition: transform 0.3s ease;
    width: 30px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05em;
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    color: white;
}

.faq-cta h3 {
    font-size: 2em;
    margin-bottom: 15px;
}

.faq-cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ========== SEÇÃO URGÊNCIA ========== */
.urgencia-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    padding: 80px 20px;
}

.urgencia-box {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 25px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.urgencia-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--primary-color));
}

.urgencia-icon {
    font-size: 5em;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.urgencia-content h2 {
    font-size: 2.5em;
    color: var(--dark-color);
    margin-bottom: 20px;
    margin-top: 30px;
}

.urgencia-destaque {
    font-size: 1.5em;
    color: #fa4a2e;
    font-weight: bold;
    margin-bottom: 30px;
    padding: 20px;
    background: #FFF3E0;
    border-radius: 15px;
}

.urgencia-beneficios {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 30px;
}

.urgencia-beneficios li {
    padding: 12px 0;
    font-size: 1.15em;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.urgencia-timer {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin: 30px 0;
    font-size: 1.1em;
}
.urgencia-timer p {
    color: rgb(26, 26, 26);
}

.urgencia-timer p strong {
    color: rgb(26, 26, 26);
}
.urgencia-timer strong {
    font-size: 1.3em;
    color: #FFF;
}

.urgencia-button {
    font-size: 1.4em;
    padding: 22px 55px;
    animation: pulse 2s infinite;
}

.urgencia-obs {
    margin-top: 20px;
    font-size: 0.9em;
    color: #999;
    font-style: italic;
}

/* ========== SEÇÃO CONTATO MELHORADA ========== */
.contato-section {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    padding: 80px 20px;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.contato-info h3 {
    font-size: 1.8em;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.contato-beneficios {
    list-style: none;
    margin-bottom: 40px;
}

.contato-beneficios li {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.beneficio-icon {
    font-size: 2.5em;
    flex-shrink: 0;
}

.contato-beneficios strong {
    display: block;
    color: var(--dark-color);
    font-size: 1.1em;
    margin-bottom: 5px;
}

.contato-beneficios p {
    color: #666;
    font-size: 0.95em;
}

.contato-horario {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
}

.contato-horario h4 {
    color: var(--dark-color);
    font-size: 1.2em;
    margin-bottom: 15px;
}

.contato-horario p {
    color: #555;
    margin-bottom: 8px;
    font-size: 1.05em;
}

.contato-whatsapp-box {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 2px solid var(--whatsapp);
}

.whatsapp-box-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 25px;
}

.whatsapp-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--whatsapp), #20ba5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
}

.whatsapp-box-header strong {
    display: block;
    color: var(--dark-color);
    font-size: 1.2em;
}

.status-online {
    display: block;
    color: var(--whatsapp);
    font-size: 0.9em;
    font-weight: normal;
}

.status-online::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--whatsapp);
    border-radius: 50%;
    margin-right: 5px;
    animation: pulse 2s infinite;
}

.whatsapp-mensagem-exemplo {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.whatsapp-mensagem-exemplo p {
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.whatsapp-button-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--whatsapp) 0%, #20ba5a 100%);
    color: white;
    padding: 20px 30px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-button-main:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #1da851 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon-large {
    font-size: 3em;
}

.whatsapp-button-text {
    text-align: left;
}

.whatsapp-button-title {
    display: block;
    font-size: 1.3em;
    font-weight: bold;
}

.whatsapp-button-subtitle {
    display: block;
    font-size: 0.9em;
    opacity: 0.9;
}

.contato-privacidade {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9em;
    color: #999;
}

.contato-final-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.contato-final-cta p {
    font-size: 1.2em;
    color: #555;
}

.contato-final-cta strong {
    color: var(--secondary-color);
    font-size: 1.3em;
}

/* ========== FOOTER ========== */
footer {
    background: var(--dark-color);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

footer p {
    font-size: 1.1em;
    opacity: 0.8;
}

/* ========== ANIMAÇÕES ========== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ========== RESPONSIVO ========== */
@media (max-width: 768px) {
    header {
        min-height: 100vh;
        padding: 80px 20px;
    }
    
    header h1 {
        font-size: 2.5em;
    }
    
    header p {
        font-size: 1.1em;
    }
    
    .header-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
    }
    
    .geradores-grid {
        grid-template-columns: 1fr;
    }
    
    .locacao-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .processo-steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .planos-grid {
        grid-template-columns: 1fr;
    }
    
    .plano-card.popular {
        transform: scale(1);
    }
    
    .contato-grid {
        grid-template-columns: 1fr;
    }
    
    .garantia-text h3 {
        font-size: 1.2em;
    }
    
    .urgencia-content h2 {
        font-size: 1.8em;
    }
    
    .urgencia-destaque {
        font-size: 1.2em;
    }
}/* End custom CSS */