/* ============================================
   VARIÁVEIS DE COR E TEMA
   ============================================ */
:root {
    --primary-color: #7B2CBF;
    --secondary-color: #c3327a;
    --accent-color: #FF6B35;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ============================================
   RESET E BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

/* ============================================
   BOTÕES
   ============================================ */
button {
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

@media (max-width: 480px) {
    .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-size: 16px;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 480px) {
    .btn-secondary {
        padding: 10px 20px;
        font-size: 14px;
    }
}

.btn-white {
    background: white;
    color: var(--primary-color);
    padding: 12px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

@media (max-width: 480px) {
    .btn-white {
        padding: 10px 25px;
        font-size: 14px;
    }
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 18px;
}

@media (max-width: 480px) {
    .btn-lg {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0;
}

.container .navbar-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 12px 0;
    gap: 20px;
    position: relative;
}

.navbar .container {
    padding-top: 0;
    padding-bottom: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    flex-shrink: 0;
    text-decoration: none;
}

@media (max-width: 768px) {
    .logo {
        font-size: 20px;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 18px;
    }
}

.logo-icon {
  display: inline-block;
  width: 48px;
  height: 50px;
  background-image: url('img/logotipo-provider.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: -10px;
}

@media (max-width: 768px) {
    .logo-icon {
        width: 40px;
        height: 40px;
        margin-right: -5px;
    }
}

@media (max-width: 480px) {
    .logo-icon {
        width: 32px;
        height: 32px;
    }
}

.logo-text {
    display: inline-block;
    width: 140px;
    height: 40px;

    background-image: url('img/logo-nome.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 768px) {
    .logo-text {
        width: 110px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        width: 90px;
        height: 26px;
    }
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    flex: 1;
    justify-content: center;
    margin: 0 30px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary-color);
    font-weight: 600;
}

.navbar-btn {
    white-space: nowrap;
    flex-shrink: 0;
}

/* Menu Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
    justify-content: space-around;
    width: 40px;
    height: 40px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 25px;
        margin: 0 20px;
    }

    .nav-links a {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .container .navbar-content {
        gap: 15px;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;

        background: white;

        display: flex;
        flex-direction: column;
        gap: 0;

        margin: 0;
        padding: 0 20px;

        border-bottom: 1px solid #eee;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);

        height: 0;
        overflow: hidden;

        opacity: 0;
        pointer-events: none;

        transition: all 0.3s ease;

        justify-content: flex-start;
        align-items: flex-start;
    }

    .btn-secondary {
        background: rgba(255, 255, 255, 0.863);
        color: var(--text-dark);
        padding: 12px 30px;
        border: 2px solid var(--primary-color);
        border-radius: 8px;
        font-size: 16px;
    }

    .nav-links.active {
        height: auto;
        padding: 20px;
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        padding: 12px 0;
        font-size: 15px;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .menu-toggle {
        display: flex;
        flex-shrink: 0;
        margin-left: auto;
    }

    .navbar-btn {
        padding: 10px 16px;
        font-size: 14px;
        display: none;
    }
}

@media (max-width: 600px) {
    .container .navbar-content {
        gap: 10px;
    }

    .nav-links {
        top: 65px;
        padding: 16px;
    }

    .nav-links a {
        padding: 10px 0;
        font-size: 14px;
    }

    .navbar-btn {
        padding: 9px 14px;
        font-size: 13px;
    }

    .menu-toggle {
        width: 36px;
        height: 36px;
    }

    .menu-toggle span {
        width: 22px;
        height: 2.5px;
    }
}

@media (max-width: 480px) {
    .container .navbar-content {
        gap: 8px;
        padding: 10px 0;
    }

    .logo {
        font-size: 16px;
        gap: 3px;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
        margin-right: 0;
    }

    .logo-text {
        display: none;
    }

    .nav-links {
        top: 58px;
        padding: 12px;
    }

    .nav-links a {
        padding: 8px 0;
        font-size: 13px;
    }

    .navbar-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    scroll-margin-top: 80px;
    padding: 80px 0;
    overflow: hidden;

    background: 
        linear-gradient(
            90deg,
            rgba(10, 10, 25, 0.85) 0%,
            rgba(10, 10, 25, 0.75) 40%,
            rgba(10, 10, 25, 0.4) 70%,
            rgba(10, 10, 25, 0.1) 100%
        ),
        url('img/banner.png');

    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .hero {
        padding: 50px 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 12px;
    }
}

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

.hero .container {
    padding: 30px 0;
    margin-top: -30px;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .hero .container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero .container {
        gap: 30px;
        flex-direction: column;
        padding: 20px 0;
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .hero .container {
        padding: 15px 0;
        gap: 20px;
    }
}

.hero-text {
    flex: 1;
    max-width: 550px;
}

@media (max-width: 768px) {
    .hero-text {
        max-width: 100%;
    }
}

.hero-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 70px;
    margin: 20px 0;
    color: white;
    line-height: 1.1;
}

@media (max-width: 1200px) {
    .hero h1 {
        font-size: 56px;
        line-height: 1.15;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
        line-height: 1.2;
        margin: 15px 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
        line-height: 1.25;
        margin: 12px 0;
    }
}

.hero .highlight {
    color: var(--primary-color);
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin: 20px 0 40px;
    line-height: 1.8;
    max-width: 500px;
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 16px;
        margin: 16px 0 30px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .hero-description {
        font-size: 14px;
        margin: 12px 0 24px;
        line-height: 1.6;
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons button {
        width: 100%;
    }
}

.hero-stats {
    display: flex;
    gap: 40px;
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 25px;
    }
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 32px;
    color: white;
}

.stat p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    /* margin-top: -5px; */
    font-weight: normal;
}

@media (max-width: 768px) {
    .stat strong {
        font-size: 24px;
    }

    .stat p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .stat strong {
        font-size: 20px;
    }

    .stat p {
        font-size: 11px;
    }
}

.illustration-box {
    position: relative;
    width: 300px;
    height: 300px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-icon {
    position: absolute;
    font-size: 60px;
    animation: float 6s ease-in-out infinite;
}

.icon-1 {
    animation-delay: 0s;
    top: 20%;
    right: 15%;
}

.icon-2 {
    animation-delay: 1s;
    bottom: 20%;
    left: 15%;
}

.icon-3 {
    animation-delay: 2s;
    top: 50%;
    left: 20%;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 20px;
    }

    .illustration-box {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }

    .illustration-box {
        width: 200px;
        height: 200px;
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 50px 16px;

        background: 
            linear-gradient(
                rgba(10, 10, 25, 0.85),
                rgba(10, 10, 25, 0.85)
            ),
            url('img/banner.png');

        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .hero-text {
        text-align: center;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 40px;
        margin: 20px 0;
        color: white;
        line-height: 1.2;
    }

    .hero span.highlight {
        color: var(--primary-color);
    }

    .hero-description {
        color: rgba(255, 255, 255, 0.85);
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 20px;
    }

    .stat strong {
        font-size: 28px;
        color: white;
    }

    .stat p {
        color: rgba(255,255,255,0.7);
        text-shadow: none;
    }
}

/* ============================================
   PLANOS SECTION
   ============================================ */
.old-speed {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.bonus-badge {
    display: inline-block;
    border: 2px solid #ff6b35;
    color: #ff6b35;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    margin: 10px 0 15px;
    font-weight: 500;
}

.divider {
    height: 1px;
    background: #eee;
    margin: 20px 0;
}

.price {
    font-size: 32px;
    font-weight: bold;
    color: var(--text-dark);
}

.price small {
    font-size: 14px;
    color: var(--text-light);
    font-weight: normal;
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 12px;
    border-radius: 10px;
    font-weight: bold;

    transition: 0.3s;
}

.btn-primary:hover {
    filter: brightness(1.1);
}

.planos {
    padding: 80px 0 80px;
    background: #f6f7fb;
    scroll-margin-top: 50px;
}

@media (max-width: 768px) {
    .planos {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .planos {
        padding: 40px 0;
    }
}

.planos h2 {
    font-size: 46px;
    text-align: center;
    margin-bottom: 0px;
    color: #121212;
    font-weight: 800;
}

@media (max-width: 768px) {
    .planos h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .planos h2 {
        font-size: 24px;
    }
}

.planos .highlight {
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 17px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .section-subtitle {
        font-size: 13px;
        margin-bottom: 25px;
    }
}

.planos-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 17px;
    margin-top: 50px;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
    align-items: stretch;
}

.plano-card {
    background: white;
    border-radius: 16px;
    padding: 24px 20px 24px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(49, 56, 84, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    border: 1px solid #edf1f7;
    min-height: 465px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .plano-card {
        min-height: auto;
        padding: 20px 16px;
    }
}

@media (max-width: 480px) {
    .plano-card {
        padding: 16px 12px;
        min-height: auto;
    }
}

.plano-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 26px rgba(37, 44, 68, 0.18);
}

.plano-card.featured {
    border: 2px solid #7b2cbf;
    box-shadow: 0 16px 32px rgba(44, 39, 108, 0.24);
    transform: translateY(0);
    z-index: 2;
}

.plano-card.featured:hover {
    transform: translateY(-8px);
}

.plano-badge {
    display: none;
}

.featured-badge {
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    background: #ff6b35;
    color: white;
    padding: 3px 20px;
    border-radius: 0px 14.3px 0px 14.3px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.plano-header {
    margin-bottom: 12px;
}

.plano-header h3 {
    font-size: 30px;
    color: #111827;
    margin-bottom: 4px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .plano-header h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .plano-header h3 {
        font-size: 20px;
    }
}

.old-speed {
    text-decoration: line-through;
    color: #abafba;
    font-size: 20px;
    margin: 2px;
    font-weight: 600;
}

.bonus-badge {
    display: inline-block;
    border: 1.8px solid #ff6b35;
    color: #ff6b35;
    padding: 7px 13px;
    border-radius: 12px;
    font-size: 13px;
    margin: 10px 0 10px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.plano-speed {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
}

.speed-number {
    font-size: 50px;
    line-height: 1;
    font-weight: 700;
    background: linear-gradient(130deg, #7b2cbf, #ff6b35);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.speed-number-featured {
    font-size: 50px;
    line-height: 1;
    font-weight: 700;
    background: linear-gradient(130deg, #7b2cbf, #ff6b35);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.speed-banda-livre {
    font-size: 50px;
    line-height: 1;
    font-weight: 700;
    background: linear-gradient(130deg, #7b2cbf, #ff6b35);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plano-card.featured .speed-number {
    color: green;
    background: none;
    -webkit-text-fill-color: green;
}

.plano-card.infinity .plano-speed {
    margin: 12px 0 12px;
}

.plano-card.infinity .price {
    font-size: 36px;
}

.speed-unit {
    font-size: 22px;
    color: #6b7280;
    font-weight: 700;
    margin-bottom: 10px;
}

.plano-card.featured .speed-unit {
    color: #6b7280;
}

.divider {
    margin: 0px;
    height: 1px;
    background: #e6e8f2;
    margin: 10px 0;
}

.plano-price {
    display: flex;
    flex-direction: column;
    margin: 10px 0 20px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #121827;
}

.plano-card.featured .price {
    color: #121827;
}

.price small {
    font-size: 18px;
    color: #6b7280;
    font-weight: 700;
}

.price small + text {
    margin-left: 4px;
}

.plano-card.featured .price small {
    color: #6b7280;
}

.price-period {
    font-size: 18px;
    color: #6b7280;
    font-weight: 600;
}

.plano-card .btn-primary {
    margin-top: 22px;
    background: white;
    color: #7b2cbf;
    border: 2px solid #7b2cbf;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
    padding: 12px 24px;
}

.plano-card .btn-primary:hover {
    background: #7b2cbf;
    color: white;
    box-shadow: 0 10px 18px rgba(126, 44, 206, 0.35);
}

.plano-card.featured .btn-primary {
    background: #7b2cbf;
    color: white;
    border-color: #7b2cbf;
}

.plano-card.featured .btn-primary:hover {
    background: #621fa8;
}

@media (max-width: 1200px) {
    .planos-grid {
        grid-template-columns: repeat(2, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .planos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .plano-card {
        min-height: auto;
    }

    .plano-card.featured {
        transform: scale(1);
    }

    .plano-card.featured:hover {
        transform: translateY(-8px);
    }

    .banda-livre-text {
        font-size: 52px;
    }

    .speed-number {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .plano-card {
        padding: 16px 12px;
    }

    .plano-header h3 {
        font-size: 22px;
    }

    .speed-number,
    .speed-number-featured,
    .speed-banda-livre {
        font-size: 32px;
    }

    .speed-unit {
        font-size: 18px;
    }

    .price {
        font-size: 28px;
    }

    .price small {
        font-size: 14px;
    }
}

/* ============================================
   DIFERENCIAIS SECTION
   ============================================ */
.diferenciais {
    padding: 80px 0;
    background: #f8f9fc;
    scroll-margin-top: 80px;
}

@media (max-width: 768px) {
    .diferenciais {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .diferenciais {
        padding: 40px 0;
    }
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* FORÇA 3 colunas */
    gap: 25px;
    justify-content: center;
}

/* CARD */
.diferencial-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.5s;
}
.diferencial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ÍCONE */
.diferencial-icon {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #7b2cbf, #ff6b35);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    margin-bottom: 20px;
}

.diferencial-icon svg {
    width: 26px;
    height: 26px;
}

/* CORES INDIVIDUAIS */
.diferencial-card:nth-child(1) .diferencial-icon {
    background: linear-gradient(135deg, #7b2cbf, #9d4edd);
}

.diferencial-card:nth-child(2) .diferencial-icon {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

.diferencial-card:nth-child(3) .diferencial-icon {
    background: linear-gradient(135deg, #7b2cbf, #ff6b35);
}

.diferencial-card:nth-child(4) .diferencial-icon {
    background: linear-gradient(135deg, #ff3d00, #ff6b35);
}

.diferencial-card:nth-child(5) .diferencial-icon {
    background: linear-gradient(135deg, #5a189a, #7b2cbf);
}

.diferencial-card:nth-child(6) .diferencial-icon {
    background: linear-gradient(135deg, #ff6b35, #ff9e00);
}

/* TEXTO */
.diferencial-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.diferencial-card p {
    font-size: 14px;
    color: #666;
}

.diferencial-icon svg {
    width: 26px;
    height: 26px;
    display: block;

    object-fit: contain;
}

@media (max-width: 900px) {
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .diferencial-icon {
        width: 50px;
        height: 50px;
    }

    .diferencial-icon svg {
        width: 22px;
        height: 22px;
    }

    .diferencial-card h3 {
        font-size: 16px;
    }

    .diferencial-card p {
        font-size: 12px;
    }
}

.diferenciais h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 15px;
    color: #121212;
    font-weight: 800;
}

.diferenciais .highlight {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .diferenciais h2 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .diferenciais h2 {
        font-size: 24px;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    color: white;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 40px 0;
    }
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="20" fill="white" opacity="0.1"/><circle cx="80" cy="80" r="30" fill="white" opacity="0.1"/></svg>');
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-content a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 800;
    font-size: 16px;
}

@media (max-width: 1024px) {
    .cta-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 50px 0;
    }

    .cta-content h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .cta-content p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .btn-white {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* ============================================
   CONTATO SECTION
   ============================================ */
.contato {
    scroll-margin-top: 70px;
    padding: 80px 0 70px;
    background: #f4f6fd;
}

.contato h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.25;
    color: #151c35;
}

.contato .section-subtitle {
    color: #4b5563;
    font-size: 18px;
    margin-bottom: 40px;
}

.contato-container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 30px;
    margin-top: 40px;
}

.contato-form {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(35, 45, 82, 0.1);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #d9e2f6;
    border-radius: 14px;
    font-family: inherit;
    font-size: 16px;
    color: #1f2937;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7b2cbf;
    box-shadow: 0 0 0 4px rgba(123, 44, 191, 0.15);
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-item {
    background: linear-gradient(135deg, #7a2cbf27, #ffffff);
    border-radius: 16px;
    padding: 18px 16px;
    box-shadow: 0 12px 25px rgba(34, 53, 104, 0.07);
    display: flex;
    align-items: center;
    gap: 16px;
}

.info-item:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.info-item-email:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.info-item-email {
    background: linear-gradient(135deg, #f974162a, #ffffff);
    border-radius: 16px;
    padding: 18px 16px;
    box-shadow: 0 12px 25px rgba(34, 53, 104, 0.07);
    display: flex;
    align-items: center;
    gap: 16px;
}

.info-item:first-child .info-icon {
    background: linear-gradient(120deg, #6f46d2, #8b5cf6);
}

.info-item:nth-child(2) .info-icon {
    background: linear-gradient(120deg, #f97316, #fb923c);
}

.info-item:nth-child(3) .info-icon {
    background: linear-gradient(120deg, #2563eb, #60a5fa);
}

.info-item.horario {
    background: linear-gradient(135deg, #7b2cbf, #ff6b35);
    color: white;
    border: 1px solid rgba(123, 44, 191, 0.2);
    box-shadow: 0 16px 30px rgba(35, 45, 82, 0.08);
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
}

.info-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: linear-gradient(135deg, #7b2cbf, #9d4edd);

    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

/* Telefone */
.info-item:nth-child(1) .info-icon {
    background: linear-gradient(135deg, #6a11cb, #8e44ad);
}

/* Email */
.info-item-email .info-icon {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

/* Endereço */
.info-item:nth-child(3) .info-icon {
    background: linear-gradient(135deg, #7b2cbf, #9d4edd);
}

.info-content h4 {
    font-size: 20px;
    margin: 0 0 6px;
    color: #0f172a;
}

.info-content p {
    color: #475569;
    margin: 0;
    line-height: 1.6;
}

.contato-form .btn-primary {
    margin-top: 8px;
    background: #7B2CBF;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    padding: 14px;
}

.contato-form .btn-primary:hover {
    transform: translateY(-1px);
}

@media (max-width: 1024px) {
    .contato-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contato h2 {
        font-size: 32px;
    }

    .contato-container {
        gap: 30px;
    }

    .contato-form {
        padding: 20px;
    }

    .info-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .info-icon {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .contato {
        padding: 50px 0 40px;
    }

    .contato h2 {
        font-size: 22px;
    }

    .contato .section-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .contato-form {
        padding: 16px;
        gap: 12px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }

    .contato-form .btn-primary {
        font-size: 14px;
        padding: 12px;
    }

    .info-item {
        padding: 12px;
    }

    .info-content h4 {
        font-size: 16px;
    }

    .info-content p {
        font-size: 12px;
    }

    .info-item.horario {
        padding: 16px;
    }

    .info-item.horario h4 {
        font-size: 16px;
    }

    .info-item.horario p {
        font-size: 12px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 15px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.footer-item h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

@media (max-width: 480px) {
    .footer-item h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .footer-item p {
        font-size: 14px;
    }
}

.footer-item ul {
    list-style: none;
}

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

.footer-item ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

@media (max-width: 480px) {
    .footer-item ul li {
        margin-bottom: 8px;
    }

    .footer-item ul li a {
        font-size: 14px;
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   UTILITÁRIOS
   ============================================ */
.highlight {
    color: var(--primary-color);
}
