/* ====================== */
/* VARIÁVEIS GLOBAIS      */
/* ====================== */
:root {
    --primary: #3498db;
    --primary-dark: #2980b9;
    --secondary: #2c3e50;
    --accent: #e74c3c;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --text: #34495e;
    --gray: #95a5a6;
    --success: #27ae60;
}

/* ====================== */
/* RESET E ESTILOS BASE   */
/* ====================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
}

/* ====================== */
/* COMPONENTES COMUNS     */
/* ====================== */

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: /*var(--accent)*/#ff1800;
    color: white;
    border-radius: 30px;
	box-shadow: 0px 1px 3px #000;
}

.btn-primary:hover {
    background-color: /*#c0392b*/ #000;
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background-color: #1a252f;
}

.btn-outline {
    border-color: var(--accent);
    color: var(--accent);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--accent);
    color: white;
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* Títulos de seção */
.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ====================== */
/* HEADER - TOPO DO SITE  */
/* ====================== */
.main-header {
    background-color: #ffffff;
    padding: 0;
    position: relative;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.main-header.scrolled {
    padding: 10px 0;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(5px);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 1px;
    width: 25%;
}

.logo span {
    color: #e50914;
}

/* Navegação */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: #1c3c50;
    font-weight: 500;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.main-nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e50914;
    transition: width 0.3s ease;
}

.main-nav a:hover:after,
.main-nav a.active:after {
    width: 100%;
}

.main-nav a:hover {
    color: #e50914;
}

/* Menu Mobile */

.btnWhats2 img{
	height: 55px;
    width: auto;
    /*margin-bottom: 15px;*/
    object-fit: contain;
}

.btnMobile ul{
	display: flex;
	list-style: none;
	background: #ff0000;
	padding: 10px 10px;
	border-radius: 30px;
	box-shadow: 0px 1px 3px #000;
}

.btnMobile a {
    color: #1c3c50;
    font-weight: 500;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    /*padding: 5px 0;*/
    transition: all 0.3s ease;
}

.btnMobile a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e50914;
    transition: width 0.3s ease;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

.btnWhats img{
	height: 35px;
    width: auto;
    margin-bottom: 15px;
    object-fit: contain;
}

/* ====================== */
/* SEÇÃO HERO             */
/* ====================== */
.hero-banner {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 80px 0;
}

.hero-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--secondary);
}

.feature-item i {
    color: var(--accent);
}

/* ====================== */
/* SEÇÃO DE PLANOS        */
/* ====================== */
.plans-section {
    padding: 80px 0;
    background-color: var(--light);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.plan-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.plan-card.featured {
    border: 2px solid var(--accent);
}

.plan-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.plan-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.plan-header h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.plan-price {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--accent);
}

.plan-price span {
    font-size: 1rem;
    color: var(--gray);
    font-weight: normal;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features i.fa-check {
    color: var(--success);
}

.plan-features i.fa-times {
    color: var(--gray);
    opacity: 0.7;
}

/* ====================== */
/* SEÇÃO DISPOSITIVOS     */
/* ====================== */
.devices-section {
    padding: 80px 0;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.device-item {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}


.device-item:hover {
    transform: translateY(-10px);
}

.device-item img {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
    object-fit: contain;
}

.device-item h3 {
    font-size: 1.1rem;
    color: var(--secondary);
}

/* ====================== */
/* SEÇÃO COMPARATIVO      */
/* ====================== */
.comparison-section {
    padding: 80px 0;
    background-color: var(--light);
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background-color: var(--secondary);
    color: white;
    font-weight: bold;
}

.comparison-header > div {
    padding: 15px;
    text-align: center;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background-color: white;
}

.comparison-row:nth-child(even) {
    background-color: #f9f9f9;
}

.comparison-row > div {
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.comparison-feature {
    font-weight: 600;
}

.comparison-us .highlight {
    color: var(--accent);
    font-weight: bold;
}

/* ====================== */
/* SEÇÃO DEPOIMENTOS      */
/* ====================== */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    color: var(--text);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1rem;
    color: var(--secondary);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ====================== */
/* SEÇÃO CTA FINAL        */
/* ====================== */
.final-cta {
    background-color: var(--secondary);
    color: white;
    padding: 80px 20px;
    text-align: center;
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
}

.final-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* ====================== */
/* RESPONSIVIDADE         */
/* ====================== */
@media (max-width: 992px) {
    .hero-banner {
        flex-direction: column;
        text-align: center;
        padding: 60px 0;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-image {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    /* Header */
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #0a0a0a;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        transform: translateY(-150%);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo {
        font-size: 1.5rem;
    }

    /* Geral */
    .section-title {
        font-size: 1.8rem;
    }
    
    .comparison-header, .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        font-size: 0.9rem;
    }
    
    .final-cta h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-header, .comparison-row {
        grid-template-columns: 1.5fr 1fr;
    }
    
    .comparison-us {
        display: none;
    }

    .logo {
        font-size: 1.3rem;
    }
}

@media (min-width: 836px){
	.btnMobile ul{
		display: none;
	}
}

/* ====================== */
/* PÁGINA DE CONTATO      */
/* ====================== */

.contact-page {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.page-header .subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Formulário de Contato */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-form h2 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Seção de Informações de Contato */
.contact-info {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-info h2 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 30px;
    text-align: center;
}

.info-item {
    margin-bottom: 30px;
    text-align: center;
}

.info-item i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
    display: block;
}

.info-item h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.info-item p {
    color: var(--text);
    margin-bottom: 15px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
}

/* Responsividade */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-form,
    .contact-info {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .contact-page {
        padding: 50px 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 25px;
    }
    
    .contact-form h2,
    .contact-info h2 {
        font-size: 1.5rem;
    }
}