/*
Theme Name: MovCidade - Recarga UniTV
Theme URI: https://movcidade.com.br
Author: MovCidade
Author URI: https://movcidade.com.br
Description: Tema WordPress para venda de Recargas UniTV - cópia fiel do site original movcidade.com.br
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: movcidade
Tags: one-page, ecommerce, landing-page
*/

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #FF5200;
    --color-secondary: #663399;
    --color-dark: #32323A;
    --color-dark2: rgba(50,50,58,1);
    --color-text: #474646;
    --color-accent: #FFBC7D;
    --color-white: #FFFFFF;
    --color-bg-dark: #1a1a2e;
    --font-main: 'Poppins', sans-serif;
    --max-width: 1140px;
    --border-radius: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: #fff;
    line-height: 1.6;
    font-size: 16px;
}

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

a:hover {
    color: var(--color-primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 600;
    line-height: 1.3;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   HEADER / NAVBAR
   =========================== */
#site-header {
    background-color: rgba(50,50,58,1);
    position: sticky;
    top: 0;
    z-index: 9999;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

#site-logo img {
    height: 50px;
    width: auto;
}

#site-logo .logo-text {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

#site-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

#site-nav ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

#site-nav ul li a:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
}

.nav-btn {
    background-color: var(--color-secondary) !important;
    color: #fff !important;
    padding: 10px 25px !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    border-bottom: none !important;
    transition: background-color 0.3s, transform 0.2s !important;
}

.nav-btn:hover {
    background-color: var(--color-primary) !important;
    transform: translateY(-2px);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s;
}

/* ===========================
   HERO / BANNER
   =========================== */
#hero {
    background: linear-gradient(135deg, rgba(50,50,58,0.95) 0%, rgba(30,30,40,0.98) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(102,51,153,0.2) 0%, transparent 70%);
    pointer-events: none;
}

#hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background-color: var(--color-secondary);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--color-accent);
}

.hero-content p {
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 35px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 15px;
}

.hero-feature-item::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background-color: var(--color-secondary);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.btn-primary {
    display: inline-block;
    background-color: var(--color-secondary);
    color: #fff;
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 600;
    padding: 18px 50px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    text-align: center;
}

.btn-primary:hover {
    background-color: var(--color-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102,51,153,0.4);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: #fff;
    transform: translateY(-2px);
}

.btn-whatsapp svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

.hero-image {
    z-index: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.hero-trust-badges {
    margin-top: 20px;
}

.hero-trust-badges img {
    max-width: 300px;
    margin: 0 auto;
}

/* ===========================
   SECTION COMMON
   =========================== */
section {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    display: inline-block;
    background-color: var(--color-secondary);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 17px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================
   OFFICIAL BADGE SECTION
   =========================== */
#official-badge {
    background-color: var(--color-secondary);
    padding: 20px 0;
    text-align: center;
}

#official-badge p {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===========================
   PLANS / PRICING
   =========================== */
#recargas {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.pix-banner {
    background: linear-gradient(135deg, var(--color-primary), #ff8c00);
    color: #fff;
    text-align: center;
    padding: 15px 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.plans-warning {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 40px;
    font-size: 14px;
    color: #856404;
}

.plans-warning strong {
    color: #cc0000;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.plan-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(102,51,153,0.2);
    border-color: var(--color-secondary);
}

.plan-card.featured {
    border-color: var(--color-secondary);
    background: linear-gradient(135deg, #fff 0%, #f8f0ff 100%);
}

.plan-card.featured::before {
    content: 'MAIS POPULAR';
    position: absolute;
    top: 15px;
    right: -25px;
    background: var(--color-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 35px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.plan-image {
    margin-bottom: 20px;
}

.plan-image img {
    max-width: 180px;
    margin: 0 auto;
    border-radius: 10px;
}

.plan-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.plan-period {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.plan-price {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 25px;
    line-height: 1;
}

.plan-price span {
    font-size: 20px;
    vertical-align: top;
    margin-top: 8px;
    display: inline-block;
}

.plan-card .btn-primary {
    width: 100%;
    font-size: 16px;
    padding: 15px 30px;
}

/* ===========================
   HOW IT WORKS
   =========================== */
#como-funciona {
    background-color: #fff;
}

.como-funciona-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.como-funciona-content h2 {
    font-size: 32px;
    color: #2d2d2d;
    margin-bottom: 20px;
}

.como-funciona-content h2 span {
    color: var(--color-secondary);
}

.como-funciona-content p {
    color: #666;
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.como-funciona-content p strong {
    color: #333;
}

/* ===========================
   FEATURES / FUNCIONALIDADES
   =========================== */
#funcionalidades {
    background-color: #f8f8f8;
}

.features-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.features-intro-text h2 {
    font-size: 32px;
    color: #2d2d2d;
    margin-bottom: 20px;
}

.features-intro-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--color-secondary);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102,51,153,0.15);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 8px;
    line-height: 1;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ===========================
   FAQ
   =========================== */
#faq {
    background-color: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.faq-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    background-color: #fff;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    user-select: none;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f8f0ff;
    color: var(--color-secondary);
}

.faq-question.active {
    background-color: var(--color-secondary);
    color: #fff;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    background-color: var(--color-secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
    transition: background-color 0.3s, transform 0.3s;
}

.faq-question.active .faq-toggle {
    background-color: #fff;
    color: var(--color-secondary);
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 18px 22px;
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    background-color: #fafafa;
    border-top: 1px solid #e8e8e8;
}

.faq-answer.open {
    display: block;
}

.faq-answer ol {
    list-style: decimal;
    padding-left: 20px;
    margin-top: 10px;
}

.faq-answer ol li {
    margin-bottom: 8px;
}

.faq-answer .video-wrapper {
    margin-top: 15px;
}

/* ===========================
   DOWNLOAD AREA
   =========================== */
#download {
    background: linear-gradient(135deg, rgba(50,50,58,0.97) 0%, rgba(30,30,40,0.99) 100%);
    padding: 80px 0;
}

#download .section-title h2 {
    color: #fff;
}

#download .section-title p {
    color: rgba(255,255,255,0.7);
}

.download-warning {
    background-color: rgba(255,193,7,0.15);
    border-left: 5px solid #ffc107;
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 40px;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.download-warning strong {
    color: #ffc107;
}

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

.download-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: background-color 0.3s, transform 0.3s;
}

.download-card:hover {
    background: rgba(102,51,153,0.3);
    transform: translateY(-5px);
}

.download-card img {
    max-width: 80px;
    margin: 0 auto 15px;
    border-radius: 10px;
}

.download-card h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.btn-download {
    display: inline-block;
    background-color: var(--color-secondary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-download:hover {
    background-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ===========================
   REVENDA
   =========================== */
#revenda {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.revenda-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.revenda-image img {
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    width: 100%;
}

.revenda-content h2 {
    font-size: 32px;
    color: #2d2d2d;
    margin-bottom: 20px;
}

.revenda-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* ===========================
   TESTIMONIALS / FEEDBACK
   =========================== */
#depoimentos {
    background-color: #fff;
    padding: 80px 0;
}

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

.testimonial-card {
    background: #f8f8f8;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102,51,153,0.1);
}

.testimonial-content {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 40px;
    color: var(--color-secondary);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 15px;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--color-secondary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.author-info h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 12px;
    color: #888;
}

/* ===========================
   BLOG / POSTS (ELEMENTOR STYLE)
   =========================== */
#blog {
    background-color: #fff;
    padding: 80px 0;
}

#blog .elementor-heading-title {
    color: #000;
    font-family: "Poppins", Sans-serif;
    font-size: 35px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1em;
    margin-bottom: 40px;
    text-align: center;
}

.elementor-posts-container.elementor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.elementor-post__card {
    position: relative;
    background-color: #fff;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.15);
    transition: all .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.elementor-post__card:hover {
    box-shadow: 0 10px 30px 0 rgba(0,0,0,0.2);
}

.elementor-post__thumbnail {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    overflow: hidden;
}

.elementor-post__thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

.elementor-post__card:hover .elementor-post__thumbnail img {
    transform: scale(1.1);
}

.elementor-post__text {
    padding: 25px 30px;
    flex-grow: 1;
}

.elementor-post__title {
    margin-bottom: 15px;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.3em;
}

.elementor-post__title a {
    color: #333;
    text-decoration: none;
}

.elementor-post__title a:hover {
    color: var(--color-secondary);
}

.elementor-post__excerpt {
    margin-bottom: 20px;
    font-size: 14px;
    color: #777;
    line-height: 1.6em;
}

.elementor-post__read-more {
    color: var(--color-secondary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.elementor-post__meta-data {
    padding: 15px 30px;
    border-top: 1px solid #ebebeb;
    font-size: 12px;
    color: #adadad;
    display: flex;
    justify-content: space-between;
}

/* ===========================
   FOOTER
   =========================== */
#site-footer {
    background-color: rgba(50,50,58,1);
    color: rgba(255,255,255,0.8);
    padding: 50px 0 30px;
}

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

.footer-brand .logo-text {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-secondary);
}

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

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* ===========================
   WHATSAPP FLOAT BUTTON
   =========================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37,211,102,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

/* ===========================
   COOKIE NOTICE
   =========================== */
.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #fff;
    color: #333;
    padding: 20px 30px;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 14px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    border: 1px solid #eee;
}

.cookie-notice p {
    flex: 1;
    line-height: 1.5;
}

.cookie-notice a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.cookie-btn {
    background-color: var(--color-secondary);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s;
}

.cookie-btn:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-notice {
        flex-direction: column;
        text-align: center;
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 20px;
    }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 34px; }
    .section-title h2 { font-size: 30px; }
    .download-grid { grid-template-columns: repeat(2, 1fr); }
    .elementor-posts-container.elementor-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    #site-nav { display: none; }
    #site-nav.open { display: block; position: absolute; top: 100%; left: 0; right: 0; background-color: rgba(50,50,58,0.98); padding: 20px; }
    #site-nav.open ul { flex-direction: column; gap: 15px; }
    .menu-toggle { display: flex; }
    
    #hero .container { grid-template-columns: 1fr; gap: 40px; }
    .hero-image { order: -1; }
    .hero-content h1 { font-size: 28px; }
    
    .plans-grid { grid-template-columns: 1fr; max-width: 400px; }
    .como-funciona-grid { grid-template-columns: 1fr; }
    .features-intro { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .faq-image { display: none; }
    .elementor-posts-container.elementor-grid { grid-template-columns: 1fr; }
    .revenda-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    
    section { padding: 50px 0; }
    .btn-primary { font-size: 16px; padding: 15px 30px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 24px; }
    .plan-price { font-size: 36px; }
    .download-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
}
