/*
Theme Name: Grupo VIP Premium
Theme URI: https://notorietyads.com/
Author: Notoriety Ads
Author URI: https://www.instagram.com/notoriety.ads/
Description: Landing page premium e sofisticada para captação de leads.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: grupovip
*/

/* Variables */
:root {
    --primary-color: #1a1a1a;
    --accent-color: #d4af37; /* Gold */
    --bg-light: #ffffff;
    --bg-soft: #faf9f6;
    --text-main: #333333;
    --text-muted: #666666;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
}

/* Hero Section */
.hero {
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, var(--bg-soft), var(--bg-light));
    position: relative;
    padding-top: 4rem;
}

.hero-content {
    max-width: 700px;
    animation: fadeInDown 1s ease-out;
}

.tagline {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1.2rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Benefits Section */
.benefits {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .btn-primary {
        width: 100%;
        text-align: center;
    }
}

.benefit-card {
    padding: 2.5rem;
    background-color: var(--bg-soft);
    border: 1px solid transparent;
    transition: var(--transition);
}

.benefit-card:hover {
    background-color: white;
    border-color: #eee;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.benefit-card .icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

/* Social Proof */
.social-proof {
    padding: 8rem 0;
    background-color: var(--bg-soft);
    text-align: center;
}

.social-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.social-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.avatar-group {
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid white;
    object-fit: cover;
    margin-left: -12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-text {
    margin-left: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Final CTA */
.cta-final {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

.cta-card {
    background-color: var(--primary-color);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    border-radius: 0;
    animation: fadeIn 1s ease-out;
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-card p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.8;
}

.cta-card .btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.cta-card .btn-primary:hover {
    background-color: var(--accent-color);
    color: white;
}

/* Footer */
footer {
    padding: 4rem 0;
    text-align: center;
    background-color: var(--bg-soft);
    border-top: 1px solid #eee;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

footer p {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.branding-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    padding: 8px 16px;
    border: 1px solid transparent;
    border-radius: 50px;
}

.branding-link:hover {
    background-color: white;
    border-color: #eee;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.footer-logo {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    object-fit: cover;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 8rem 0 4rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .benefits, .social-proof, .cta-final {
        padding: 5rem 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
