/* ===== CSS VARIABLES & THEME ===== */
:root {
    --bg-main: #050505;
    --bg-secondary: #111111;
    --bg-card: rgba(20, 20, 20, 0.7);
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    
    --color-primary: #e50914; /* Netflix Red */
    --color-primary-glow: rgba(229, 9, 20, 0.6);
    --color-gold: #d4af37;
    --color-gold-glow: rgba(212, 175, 55, 0.5);
    --color-whatsapp: #25d366;
    
    --font-main: 'Outfit', sans-serif;
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== RESET & GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
}

h1 span, h2 span {
    color: var(--color-primary);
    text-shadow: 0 0 10px var(--color-primary-glow);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== UTILITIES & BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 32px;
    border-radius: var(--border-radius-sm);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    width: 100%;
    max-width: 400px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff003c 0%, var(--color-primary) 100%);
    color: white;
    box-shadow: 0 4px 15px var(--color-primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px var(--color-primary-glow);
}

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

.btn-outline:hover {
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

.whatsapp-support-card {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(25,25,25,0.9) 0%, rgba(10,10,10,0.9) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: 20px 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.whatsapp-support-card:hover {
    transform: translateY(-5px);
    border-color: #25D366;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.2), inset 0 0 15px rgba(37, 211, 102, 0.1);
}

.support-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: contrast(1.25) saturate(1.25) brightness(1.25);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-support-card:hover .support-image {
    transform: scale(1.05);
    filter: contrast(1.35) saturate(1.35) brightness(1.35);
}

.btn-whatsapp {
    background: var(--color-whatsapp);
    color: #fff;
    font-weight: 600;
    width: 100%;
    font-size: 0.9rem;
    padding: 12px 15px;
    border-radius: var(--border-radius-sm);
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), inset 0 0 10px rgba(255,255,255,0.3);
    letter-spacing: 1px;
    white-space: nowrap;
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: #ffffff;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), inset 0 0 15px rgba(255,255,255,0.5), 0 0 15px rgba(255,255,255,0.4);
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(229, 9, 20, 0.15);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 0 5px var(--color-primary-glow);
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(229, 9, 20, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(229, 9, 20, 0); }
}

.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* JS Fade In Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }


/* ===== HEADER / HERO ===== */
.hero {
    position: relative;
    padding: 40px 0;
    background: radial-gradient(circle at top right, rgba(229, 9, 20, 0.1) 0%, transparent 40%),
                radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDMiLz4KPC9zdmc+') repeat;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.main-logo {
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1;
}

.main-logo span {
    color: var(--color-primary);
    text-shadow: 0 0 15px var(--color-primary-glow);
}

.hero-text {
    flex: 1;
    max-width: 650px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    letter-spacing: -1px;
    line-height: 1.1;
}



.hero-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.security-badges span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.security-badges i {
    color: var(--color-gold);
    font-size: 1.2rem;
}

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

.hero-image img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7), 0 0 40px rgba(229, 9, 20, 0.3);
    position: relative;
    z-index: 2;
    transition: var(--transition-normal);
    filter: contrast(1.25) saturate(1.25) brightness(1.2);
}

.hero-image img:hover {
    transform: scale(1.02) translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 25px 60px rgba(0,0,0,0.8), 0 0 60px rgba(229, 9, 20, 0.6);
    filter: contrast(1.3) saturate(1.35) brightness(1.3);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--color-primary);
    filter: blur(100px);
    opacity: 0.2;
    z-index: 1;
}

/* ===== BENEFITS ===== */
.benefits {
    padding: 40px 0;
    background-color: var(--bg-secondary);
}

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

.benefit-card {
    background: linear-gradient(145deg, rgba(25,25,25,0.9) 0%, rgba(10,10,10,0.9) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: var(--border-radius-md);
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 40px rgba(229, 9, 20, 0.2), inset 0 0 15px rgba(229, 9, 20, 0.1);
}

.benefit-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: contrast(1.25) saturate(1.25) brightness(1.25);
}

.benefit-card:hover .benefit-image {
    transform: scale(1.05);
    filter: contrast(1.35) saturate(1.35) brightness(1.35);
}

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 40px 0;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 50px;
    position: relative;
}

.step {
    text-align: center;
    flex: 1;
    background: linear-gradient(145deg, rgba(25,25,25,0.9) 0%, rgba(10,10,10,0.9) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: var(--transition-normal);
}

.step:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 40px rgba(229, 9, 20, 0.2), inset 0 0 15px rgba(229, 9, 20, 0.1);
}

.step-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: contrast(1.25) saturate(1.25) brightness(1.25);
}

.step:hover .step-image {
    transform: scale(1.05);
    filter: contrast(1.35) saturate(1.35) brightness(1.35);
}

.step h3 {
    margin-bottom: 10px;
    color: var(--color-gold);
}

.step p {
    color: var(--text-muted);
}

.step-connector {
    margin-top: 30px;
    color: var(--color-primary);
    font-size: 2rem;
    opacity: 0.5;
}

/* ===== PRICING ===== */
.pricing {
    padding: 40px 0;
    background: linear-gradient(to bottom, var(--bg-main), var(--bg-secondary));
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius-lg);
    padding: 40px 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 15px rgba(229, 9, 20, 0.4);
}

.price-card:active, .price-card:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 35px rgba(229, 9, 20, 0.9), inset 0 0 20px rgba(229, 9, 20, 0.2);
    transform: translateY(-5px);
}

.price-card.popular {
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(229, 9, 20, 0.15);
    z-index: 2;
    background: linear-gradient(180deg, rgba(30,30,30,1) 0%, rgba(15,15,15,1) 100%);
}

.price-card.popular:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 25px rgba(229, 9, 20, 0.6);
}

.price-card.best-value {
    border-color: #4a90e2;
}

.price-card.vip {
    border-color: var(--color-gold);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, rgba(20,20,20,1) 100%);
}

.popular-badge, .best-value-badge, .vip-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.popular-badge {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 0 15px var(--color-primary-glow);
}

.best-value-badge {
    background: #4a90e2;
    color: white;
    box-shadow: 0 0 15px rgba(74, 144, 226, 0.4);
}

.vip-badge {
    background: linear-gradient(90deg, #bf953f, #fcf6ba, #b38728, #fbf5b7);
    color: #000;
    box-shadow: 0 0 15px var(--color-gold-glow);
}

.card-header {
    text-align: center;
    margin-bottom: 25px;
}

.card-header h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.card-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.price {
    text-align: center;
    margin-bottom: 30px;
}

.price .currency {
    font-size: 1.2rem;
    vertical-align: top;
    margin-top: 10px;
    display: inline-block;
}

.price .value {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.price .cents {
    font-size: 1.2rem;
    vertical-align: top;
    margin-top: 10px;
    display: inline-block;
}

.price .period {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.price-card.popular .value, .price-card.vip .value {
    color: white;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.features {
    flex-grow: 1;
    margin: 0 auto 30px;
    width: max-content;
}

.features li {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 10px;
    margin-bottom: 15px;
    color: #ddd;
    font-size: 0.95rem;
}

.features i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

.price-card.vip .features i {
    color: var(--color-gold);
}

.price-card .btn {
    width: 100%;
}


/* ===== COMPATIBILITY ===== */
.compatibility {
    padding: 40px 0;
    text-align: center;
}

.devices-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.device {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    transition: var(--transition-fast);
    background: linear-gradient(145deg, rgba(25,25,25,0.9) 0%, rgba(10,10,10,0.9) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    width: 100%;
    max-width: 220px;
}

.device:hover {
    color: white;
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 40px rgba(229, 9, 20, 0.2), inset 0 0 15px rgba(229, 9, 20, 0.1);
}

.device-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: contrast(1.25) saturate(1.25) brightness(1.25);
}

.device:hover .device-image {
    transform: scale(1.05);
    filter: contrast(1.35) saturate(1.35) brightness(1.35);
}


/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 40px 0;
    background-color: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: var(--border-radius-md);
    position: relative;
}

.stars {
    color: var(--color-gold);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    color: #ddd;
    margin-bottom: 25px;
}

.client {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-primary);
    filter: contrast(1.15) brightness(1.1);
}

.client-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.client-info span {
    font-size: 0.8rem;
    color: var(--color-gold);
}


/* ===== GUARANTEE & CTA ===== */
.guarantee {
    padding: 40px 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDIiLz4KPC9zdmc+') repeat,
                linear-gradient(135deg, rgba(20,20,20,1) 0%, rgba(5,5,5,1) 100%);
}

.guarantee-wrapper {
    background: rgba(229, 9, 20, 0.05);
    border: 1px solid rgba(229, 9, 20, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.guarantee-wrapper::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(229, 9, 20, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.guarantee-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-content h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.guarantee-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.g-item {
    flex: 1;
    background: linear-gradient(145deg, rgba(25,25,25,0.9) 0%, rgba(10,10,10,0.9) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: var(--transition-normal);
}

.g-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 40px rgba(229, 9, 20, 0.2), inset 0 0 15px rgba(229, 9, 20, 0.1);
}

.g-item i {
    font-size: 3.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    display: inline-block;
}

.g-item p {
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--text-light);
}

.summary-points {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px;
}

.summary-points p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    font-size: 1.05rem;
    line-height: 1.4;
    background: linear-gradient(145deg, rgba(25,25,25,0.9) 0%, rgba(10,10,10,0.9) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: var(--transition-normal);
}

.summary-points p:hover {
    transform: translateY(-3px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 40px rgba(229, 9, 20, 0.2), inset 0 0 15px rgba(229, 9, 20, 0.1);
}

.summary-points p i {
    font-size: 1.4rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.summary-points p:last-child {
    margin-bottom: 0;
}

.summary-points p i {
    font-size: 1.2rem;
}

.summary-points p .ph-x-circle { color: var(--text-muted); }
.summary-points p .ph-check-circle { color: var(--color-whatsapp); }
.summary-points p .ph-lock-key { color: var(--color-gold); }


/* ===== FOOTER ===== */
footer {
    background-color: #000;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

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

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.legal-links a {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.legal-links a:hover {
    color: white;
}


/* ===== MEDIA QUERIES (RESPONSIVIDADE) ===== */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 3rem;
    }
    .main-logo {
        font-size: 3.5rem;
    }
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .price-card.popular {
        transform: scale(1);
    }
    .price-card.popular:hover {
        transform: translateY(-10px);
    }
    .hero {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-top: 10px;
        gap: 20px;
    }
    
    .hero-text {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .main-logo {
        font-size: 3rem;
    }
    
    .security-badges {
        flex-wrap: wrap;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    

    .step-connector {
        transform: rotate(90deg);
        margin: 0;
    }
    
    .guarantee-items {
        flex-direction: column;
        gap: 20px;
    }
    
    .guarantee-wrapper {
        padding: 40px 20px;
    }
}

@media (max-width: 600px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .main-logo {
        font-size: 2.5rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        width: 100%;
        max-width: 100%;
        font-size: 0.95rem;
        padding: 16px 15px;
        white-space: normal;
        line-height: 1.3;
    }
    
    .summary-points {
        margin-bottom: 20px;
    }
    
    .summary-points p {
        font-size: 0.95rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        margin-bottom: 15px;
        padding: 15px;
    }
    
    .summary-points p i {
        margin-top: 0;
        font-size: 1.8rem;
    }
    
    .price-card {
        padding: 30px 20px;
    }
}
