/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: white;
    color: #000;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 5%;
    position: relative;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text { position: relative; z-index: 2; }

.hero-title-wrapper { position: relative; display: inline-block; }

.hero-title {
    font-family: 'Roboto', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 3;
}

.hero-title span { color: #D4AF37; font-weight: 700; }

.hero-title-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center,
        rgba(212, 175, 55, 0.3) 0%,
        rgba(212, 175, 55, 0.1) 40%,
        transparent 80%
    );
    border-radius: 50%;
    z-index: 1;
    animation: pulse 6s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.2));
    transform: translate(-10%, -10%) scale(0.8);
    opacity: 0;
}

/* Pulse Animation */
@keyframes pulse {
    0% { transform: translate(-10%, -10%) scale(0.8); opacity: 0.2; }
    15% { transform: translate(5%, 5%) scale(1); opacity: 0.6; }
    30% { transform: translate(0%, 0%) scale(1.2); opacity: 0.8; }
    50% { transform: translate(10%, 10%) scale(1.4); opacity: 0.4; }
    70% { transform: translate(5%, 5%) scale(1.2); opacity: 0.6; }
    100% { transform: translate(-10%, -10%) scale(0.8); opacity: 0.2; }
}

/* Subtítulo, Metrics e Imagem */
.hero-subtitle { font-size: 1.2rem; color: #333; line-height: 1.6; margin-bottom: 40px; max-width: 90%; }

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

.metric-item { text-align: left; }
.metric-number { font-family: 'Roboto', sans-serif; font-size: 2.8rem; font-weight: 700; color: #D4AF37; margin-bottom: 5px; }
.metric-label { font-size: 0.9rem; color: #555; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }

.hero-image { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-image img { max-width: 100%; height: auto; filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.1)); animation: float 6s ease-in-out infinite; position: relative; z-index: 2; }

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

/* Seção de Planos */
.plans-section {
    padding: 100px 5%;
    background-color: #f8f9fa;
    position: relative;
}

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

.plans-header {
    text-align: center;
    margin-bottom: 70px;
}

.plans-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.plans-title span {
    color: #D4AF37;
}

.plans-subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.plan-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.plan-header {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 5px;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 500;
    color: #6c757d;
}

.plan-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 15px;
}

.plan-features {
    padding: 30px;
    flex-grow: 1;
}

.features-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.features-list {
    list-style: none;
}

.feature-item {
    padding: 12px 0;
    color: #495057;
    position: relative;
    padding-left: 30px;
    border-bottom: 1px solid #f8f9fa;
}

.feature-item:before {
    content: "✓";
    color: #D4AF37;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 12px;
}

.plan-cta {
    padding: 0 30px 30px;
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #D4AF37;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #D4AF37;
}

.cta-button:hover {
    background-color: transparent;
    color: #D4AF37;
}

.plan-popular {
    transform: scale(1.05);
    z-index: 2;
}

.plan-popular .plan-header {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: white;
}

.plan-popular .plan-name,
.plan-popular .plan-price,
.plan-popular .plan-description {
    color: white;
}

.plan-popular .cta-button {
    background-color: #000;
    border-color: #000;
}

.plan-popular .cta-button:hover {
    background-color: transparent;
    color: #000;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #000;
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsivo */
@media (max-width: 1200px){ 
    .hero-container { gap:50px; } 
    .hero-title { font-size:2.8rem; } 
}

@media (max-width: 992px){ 
    .hero-container { grid-template-columns:1fr; gap:50px; text-align:center; } 
    .hero-subtitle { max-width:100%; } 
    .metrics { justify-items:center; } 
    .hero-title-bg { transform:translate(-5%,-5%) scale(0.8); } 
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    .plan-popular {
        transform: scale(1);
        order: -1;
    }
}

@media (max-width: 768px) {
    .plans-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px){ 
    .hero-title { font-size:2.2rem; } 
    .hero-title-bg { transform:translate(-3%,-3%) scale(0.8); } 
    .plan-header,
    .plan-features,
    .plan-cta {
        padding: 20px;
    }
}
