/* =============================================
   VARIÁVEIS E CONFIGURAÇÕES GERAIS
============================================= */
:root {
    --primary: #2662e9; /* Azul para a logo */
    --primary-dark: #1a4dc4;
    --secondary: #1DE9B6;
    --accent: #FF5722; /* Cor para elementos de destaque */
    --accent-dark: #E64A19;
    --dark: #1a1a2e;
    --darker: #121221;
    --light: #f0f2f5;
    --gray: #6C757D;
    --light-gray: #E9ECEF;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #FFD700;
    --info: #17a2b8;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --teal: #20c997;
    
    --gradient: linear-gradient(135deg, var(--accent) 0%, #FF8A65 100%);
    --box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* =============================================
   RESET E ESTILOS BÁSICOS
============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background-color: #f0f2f5;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h1 {
    font-weight: 800;
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 3rem;
}

h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -15px;
    width: 70px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.text-center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #460ced;
}

/* =============================================
   CLASSES UTILITÁRIAS
============================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

section {
    padding: 100px 0;
}

/* =============================================
   BOTÕES
============================================= */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: red;
    color: white;
    border: none;
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 87, 34, 0.4);
    animation: pulse 1.5s infinite;
}

.btn-jumbo {
    font-size: 1.2rem;
    padding: 15px 40px;
}

.btn-pulse {
    animation: pulse 1.5s infinite;
}

/* =============================================
   ANIMAÇÕES
============================================= */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes pulse-danger {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

@keyframes shake {
    0% { transform: rotate(0); }
    25% { transform: rotate(8deg); }
    50% { transform: rotate(0); }
    75% { transform: rotate(-8deg); }
    100% { transform: rotate(0); }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

/* =============================================
   HEADER E NAVEGAÇÃO
============================================= */
header {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

header.sticky {
    top: 0;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 2.4rem;
    font-weight: 800;
    color: white;
    margin-left: 60px;
}

.logo span {
    color: #0a97ff;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--dark);
    font-weight: 500;
    position: relative;
}

nav ul li a:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

nav ul li a:hover:before, 
nav ul li a.active:before {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* =============================================
   BARRA DE URGÊNCIA
============================================= */
.urgency-bar {
    background-color: var(--accent);
    color: #fff5bc;
    padding: 15px 0;
    text-align: center;
    font-weight: 600;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.urgency-element {
    display: flex;
    align-items: center;
    margin: 0 15px;
}

.urgency-element i {
    margin-right: 8px;
    animation: shake 2s infinite;
}

.countdown {
    background-color: #000;
    padding: 5px 10px;
    border-radius: 5px;
    margin-left: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: yellow;
}

.slots-left {
    background-color: #000;
    padding: 5px 10px;
    border-radius: 5px;
    animation: pulse-danger 2s infinite;
    color: yellow;
}

/* =============================================
   HERO SECTION
============================================= */
/* .hero { */
    /* padding: 180px 0 100px; */
    /* background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(18, 18, 33, 0.95) 100%), url('hero-bg.jpg') center/cover no-repeat; */
    /* position: relative; */
    /* overflow: hidden; */
    /* color: white; */
/* } */

.hero {
    background: linear-gradient(135deg, #2a4b8d 0%, #1a365d 100%);
    /* Remover a referência à imagem hero-bg.jpg que está causando erro 404 */
    /* background-image: url('hero-bg.jpg'); */
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.1;
}

.hero:after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.05;
}

.hero-content {
    display: flex;
    align-items: center;
}

.hero-text {
    flex: 1;
    padding-right: 50px;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* =============================================
   PORTFÓLIO
============================================= */
.portfolio {
    background-color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.portfolio-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-title {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.portfolio-category {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    background-color: white;
    color: var(--accent);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.portfolio-link i {
    margin-left: 5px;
}

.portfolio-link:hover {
    background-color: var(--accent);
    color: white;
}

/* =============================================
   FEATURES (RECURSOS)
============================================= */
.features {
    background-color: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: white;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: white;
}

.feature-icon.primary {
    background: linear-gradient(135deg, var(--primary) 0%, #4e7df5 100%);
}

.feature-icon.success {
    background: linear-gradient(135deg, var(--success) 0%, #5ad363 100%);
}

.feature-icon.info {
    background: linear-gradient(135deg, var(--info) 0%, #36c3d9 100%);
}

.feature-icon.warning {
    background: linear-gradient(135deg, var(--warning) 0%, #ffeb3b 100%);
}

.feature-icon.purple {
    background: linear-gradient(135deg, var(--purple) 0%, #9370db 100%);
}

.feature-icon.teal {
    background: linear-gradient(135deg, var(--teal) 0%, #4be3bc 100%);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-description {
    color: var(--gray);
    margin-bottom: 20px;
}

/* =============================================
   TABELA COMPARATIVA
============================================= */
.comparison {
    margin-top: 50px;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    border: 1px solid var(--light-gray);
}

.comparison-table th {
    background-color: var(--dark);
    color: white;
}

.comparison-table tr:nth-child(even) {
    background-color: var(--light);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-check {
    color: var(--success);
    font-size: 1.2rem;
}

.comparison-times {
    color: var(--danger);
    font-size: 1.2rem;
}

.comparison-highlight {
    background-color: rgba(255, 87, 34, 0.1);
    border: 2px solid var(--accent);
    font-weight: 700;
}

/* =============================================
   COMO FUNCIONA
============================================= */
.how-it-works {
    position: relative;
    overflow: hidden;
}

.how-it-works:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--light-gray);
    z-index: -1;
}

.steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.step {
    text-align: center;
    width: 20%;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    position: relative;
}

.step-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.step-description {
    font-size: 0.9rem;
    color: var(--gray);
}

/* =============================================
   TESTEMUNHOS
============================================= */
.testimonials {
    position: relative;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.testimonial-card:before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: var(--light-gray);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.5;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--gray);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-title {
    color: var(--gray);
    font-size: 0.9rem;
}

/* =============================================
   PRICING (PREÇOS)
============================================= */
.pricing {
    background-color: var(--light);
}

.pricing-card {
    background-color: white;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    border: 3px solid var(--accent);
}

.pricing-badge {
    position: absolute;
    top: 40px;
    right: -85px;
    background: var(--accent);
    color: white;
    padding: 8px 40px;
    font-weight: 700;
    font-size: 0.875rem;
    transform: rotate(45deg);
    width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1;
}

.pricing-limited {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--danger);
    color: white;
    padding: 8px 20px;
    font-weight: 700;
    font-size: 0.875rem;
    z-index: 1;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-name {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.pricing-original {
    font-size: 1.8rem;
    color: var(--gray);
    text-decoration: line-through;
    position: relative;
    display: inline-block;
    margin-left: -100px;
}

.pricing-discount {
    position: absolute;
    top: -30px;
    right: -210px;
    background: var(--danger);
    color: white;
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    animation: wiggle 2s infinite;
}

.pricing-current {
    font-size: 4rem;
    font-weight: 800;
    margin: 15px 0;
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.pricing-currency {
    position: absolute;
    top: 10px;
    left: -20px;
    font-size: 1.5rem;
}

.pricing-duration {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-features li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
}

.pricing-features li i {
    color: var(--success);
    margin-right: 10px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.bonus-box {
    background-color: rgba(255, 215, 0, 0.1);
    border: 2px dashed var(--warning);
    padding: 20px;
    border-radius: 10px;
    margin: 30px auto;
    max-width: 500px;
    position: relative;
}

.bonus-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--warning);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.875rem;
}

.bonus-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    margin-top: 10px;
    color: var(--dark);
}

.bonus-value {
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 15px;
}

.guarantee-box {
    display: flex;
    align-items: center;
    background-color: rgba(40, 167, 69, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin: 30px auto;
    max-width: 500px;
}

.guarantee-icon {
    font-size: 2.5rem;
    color: var(--success);
    margin-right: 20px;
    flex-shrink: 0;
}

.guarantee-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--success);
}

.guarantee-text p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* =============================================
   DOMÍNIO
============================================= */
.domain-box {
    background-color: rgba(38, 98, 233, 0.1);
    border: 2px solid var(--primary);
    border-radius: 10px;
    padding: 20px;
    margin: 30px auto;
    max-width: 500px;
    text-align: left;
}

.domain-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    text-align: center;
}

.domain-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
    text-align: center;
}

.domain-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.domain-features {
    list-style: none;
    margin-bottom: 0;
}

.domain-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.domain-features li i {
    color: var(--primary);
    margin-right: 10px;
}

/* =============================================
   CTA SECTION
============================================= */
.cta {
    background: var(--gradient);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta h2 {
    color: white;
}

.cta h2:after {
    background-color: white;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn {
    background-color: white;
    color: var(--accent);
    font-weight: 700;
}

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

/* =============================================
   FOOTER
============================================= */
footer {
    background-color: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.footer-logo span {
    color: var(--primary);
}

.footer-description {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}
	
.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
}

.contact-info i {
    margin-right: 10px;
    color: var(--accent);
    margin-top: 5px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* =============================================
   BOTÕES FLUTUANTES
============================================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: red;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.floating-cta i {
    font-size: 1.2rem;
}

/* =============================================
   ESTILOS PARA MODAIS
============================================= */

/* Modal Padrão (Email/Contato) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: white;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transform: translateY(50px);
    transition: all 0.3s ease;
    max-height: 90%;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

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

.modal-label {
    display: block;
    margin-bottom: 2px;
    font-weight: 500;
}

.modal-input,
.modal-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #eee;
}

.modal-input:focus,
.modal-textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.2);
}

.modal-textarea {
    min-height: 100px;
    resize: vertical;
}

.modal-submit {
    width: 100%;
    padding: 12px;
    background: red;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.3);
}

/* Modal de Pagamento PagBank */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    width: 80%;
    max-width: 500px;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 15px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}

	/* =============================================
	   MODAL DE PAGAMENTO - CORREÇÃO DE ESTILO
	============================================= */

	/* Estilos base para o modal */
	.modal-pagamento {
	  display: none;
	  position: fixed;
	  z-index: 2000; /* Aumentando z-index para garantir que fique acima de outros elementos */
	  left: 0;
	  top: 0;
	  width: 100%;
	  height: 100%;
	  background-color: rgba(0, 0, 0, 0.8);
	  overflow: auto;
	  opacity: 0;
	  transition: opacity 0.3s ease;
	}

	.modal-pagamento.show {
	  opacity: 1;
	}

	/* Conteúdo do modal */
	.modal-pagamento .modal-content {
	  background-color: #ffffff;
	  margin: 5% auto;
	  width: 90%;
	  max-width: 500px;
	  border-radius: 8px;
	  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
	  position: relative;
	  padding: 25px;
	  transform: translateY(-20px);
	  transition: transform 0.3s ease;
	  max-height: 85vh;
	  overflow-y: auto;
	}

	.modal-pagamento.show .modal-content {
	  transform: translateY(0);
	}

	/* Botão de fechar */
	.modal-pagamento .close {
	  position: absolute;
	  top: 15px;
	  right: 15px;
	  font-size: 28px;
	  font-weight: bold;
	  color: #aaa;
	  cursor: pointer;
	  transition: color 0.2s;
	  line-height: 1;
	}

	.modal-pagamento .close:hover {
	  color: #333;
	}

	/* Título e texto */
	.modal-pagamento h3 {
	  font-size: 20px;
	  color: #333;
	  margin-bottom: 15px;
	  padding-right: 30px; /* Espaço para o botão fechar */
	}

	.modal-pagamento p {
	  font-size: 14px;
	  color: #666;
	  margin-bottom: 15px;
	  line-height: 1.4;
	}

	/* Abas de pagamento */
	.tabs-pagamento {
	  display: flex;
	  margin-bottom: 20px;
	  border-radius: 5px;
	  overflow: hidden;
	  border: 1px solid #ddd;
	}

	.tab-button {
	  flex: 1;
	  padding: 10px 0;
	  background-color: #f5f5f5;
	  color: #666;
	  border: none;
	  cursor: pointer;
	  font-weight: 600;
	  font-size: 14px;
	  transition: all 0.3s;
	}

	.tab-button.active {
	  background-color: var(--accent);
	  color: white;
	}

	.tab-button:first-child {
	  border-right: 1px solid #ddd;
	}

	/* Conteúdo das abas */
	.tab-content {
	  padding: 15px 0;
	}

	/* Campos de formulário */
	.form-group {
	  margin-bottom: 15px;
	}

	.form-group label {
	  display: block;
	  font-size: 13px;
	  color: #555;
	  margin-bottom: 5px;
	  font-weight: 500;
	}

	.form-group input,
	.form-group select {
	  width: 100%;
	  height: 38px;
	  padding: 8px 12px;
	  font-size: 14px;
	  border: 1px solid #ddd;
	  border-radius: 4px;
	  background-color: #f9f9f9;
	}

	.form-group input:focus,
	.form-group select:focus {
	  outline: none;
	  border-color: var(--accent);
	  box-shadow: 0 0 0 2px rgba(255, 87, 34, 0.1);
	}

	/* Layout para campos lado a lado */
	.form-row {
	  display: flex;
	  gap: 10px;
	}

	.form-group.half {
	  flex: 1;
	}

	/* Botão de submissão */
	.modal-pagamento .btn {
	  display: block;
	  width: 100%;
	  padding: 12px;
	  background-color: #ff0000;
	  color: white;
	  border: none;
	  border-radius: 50px;
	  font-weight: 700;
	  font-size: 14px;
	  cursor: pointer;
	  text-transform: uppercase;
	  transition: all 0.3s;
	  margin-top: 20px;
	  text-align: center;
	}

	.modal-pagamento .btn:hover {
	  background-color: #e50000;
	  transform: translateY(-2px);
	  box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2);
	}

	/* Área de PIX */
	.pix-qrcode {
	  width: 180px;
	  height: 180px;
	  margin: 15px auto;
	  padding: 5px;
	  border: 1px solid #ddd;
	  border-radius: 5px;
	  background-color: white;
	}

	.pix-qrcode img {
	  width: 100%;
	  height: 100%;
	  object-fit: contain;
	}

	.pix-code-text {
	  margin: 15px 0;
	}

	.pix-code-text textarea {
	  width: 100%;
	  padding: 10px;
	  border: 1px solid #ddd;
	  border-radius: 4px;
	  font-family: monospace;
	  font-size: 12px;
	  height: 60px;
	  resize: none;
	  margin-bottom: 10px;
	}

	/* Ícones de cartão */
	.card-icons {
	  display: flex;
	  justify-content: center;
	  margin: 15px 0;
	  gap: 10px;
	}

	.card-icons i {
	  font-size: 24px;
	  color: #666;
	}

	.card-icons .fa-cc-visa {
	  color: #1A1F71;
	}

	.card-icons .fa-cc-mastercard {
	  color: #EB001B;
	}

	.card-icons .fa-cc-amex {
	  color: #2E77BC;
	}

	.card-icons .fa-cc-elo {
	  color: #00A4E0;
	}

	/* Estados de loading, sucesso e erro */
	#payment-loading, 
	#payment-error, 
	#payment-success {
	  padding: 15px;
	  border-radius: 5px;
	  margin-top: 20px;
	  text-align: center;
	}

	#payment-loading {
	  background-color: rgba(0, 0, 0, 0.05);
	}

	#payment-error {
	  background-color: rgba(220, 53, 69, 0.1);
	}

	#payment-success {
	  background-color: rgba(40, 167, 69, 0.1);
	}

	#payment-success i, 
	#payment-error i {
	  font-size: 24px;
	  margin-bottom: 10px;
	}


/* =============================================
   ESTILOS RESPONSIVOS
============================================= */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    .features-grid,
    .portfolio-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .urgency-bar {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 70px 0;
    }
    
    .hero {
        padding: 150px 0 70px;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .features-grid,
    .portfolio-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        width: 100%;
        margin-bottom: 50px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .urgency-bar {
        padding: 10px 0;
        font-size: 0.8rem;
    }
    
    .urgency-element {
        margin: 5px;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .pricing-current {
        font-size: 3rem;
    }
    
    .pricing-original {
        font-size: 1.5rem;
        margin-left: -50px;    
    }
    
    .pricing-header {
        margin-bottom: 30px;
        margin-top: 60px;
    }            
    
    .pricing-discount {
        right: -180px;
    }

    .pricing-name {
        padding-top: 20px;
    }
                    
    /* Mobile Menu */
    .mobile-menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }
    
    nav.active {
        transform: translateY(0);
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .floating-cta {
        padding: 10px 10px;
        bottom: 20px;
        right: 30px;
    }

    .whatsapp-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 15px;
        left: 25px;
    }
    
    .copyright {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .copyright p {
        padding-bottom: 90px;
    }

    .modal-content {
        line-height: 1.1;
    }

    body {
        line-height: 1.4;
    }
    
    .footer-grid {
        margin-bottom: 20px;
    }

    .pricing-currency {
        top: 0px;
        left: -20px;
    }
    
    .bonus-badge {
        top: -25px;
    }    
}	












/* Melhorias para o modal de pagamento */
.modal-pagamento .modal-content {
    max-height: 85vh;
    overflow-y: auto;
}

/* Melhorar feedback visual para erros */
#payment-error {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    border-radius: 5px;
    padding: 10px;
    margin: 10px 0;
    color: #dc3545;
}

#payment-success {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 5px;
    padding: 10px;
    margin: 10px 0;
    color: #28a745;
}

#payment-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

/* Animação do spinner de carregamento */
.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-section-title {
  margin: 25px 0 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.form-section-title h4 {
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.form-section-title h4 i {
  margin-right: 8px;
}

.form-section-title p {
  font-size: 13px;
  color: #888;
  margin: 0;
}