/*
Theme Name: Achadinhos de Leilão
Theme URI: https://radardeachadosnoleilao.lovable.app
Author: Achadinhos de Leilão
Author URI: https://radardeachadosnoleilao.lovable.app
Description: Landing page para grupo de WhatsApp Achadinhos de Leilão
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: achadinhos-leilao
*/

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

:root {
    --background: hsl(160, 30%, 96%);
    --foreground: hsl(220, 15%, 20%);
    --primary: hsl(145, 63%, 42%);
    --primary-foreground: hsl(0, 0%, 100%);
    --accent: hsl(267, 83%, 60%);
    --accent-foreground: hsl(0, 0%, 100%);
    --muted: hsl(160, 20%, 90%);
    --muted-foreground: hsl(220, 10%, 45%);
    --card: hsl(0, 0%, 100%);
    --destructive: hsl(0, 70%, 55%);
    --whatsapp: hsl(142, 70%, 49%);
    --radius: 0.75rem;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', Impact, sans-serif;
}

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

/* Botão CTA */
.btn-cta {
    display: inline-block;
    background: linear-gradient(180deg, hsl(267, 83%, 65%) 0%, hsl(267, 83%, 50%) 100%);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    box-shadow: 0 8px 30px hsla(267, 83%, 50%, 0.4);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px hsla(267, 83%, 50%, 0.5);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, hsl(145, 63%, 42%) 0%, hsl(145, 63%, 35%) 100%);
    color: white;
    padding: 4rem 1rem;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-section .highlight {
    color: hsl(50, 100%, 70%);
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Preço */
.price-box {
    background: white;
    color: var(--foreground);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin: 2rem auto;
    max-width: 400px;
}

.price-old {
    color: var(--destructive);
    text-decoration: line-through;
    font-size: 1.25rem;
}

.price-new {
    color: var(--primary);
    font-size: 3rem;
    font-weight: 800;
}

/* Oportunidades Section */
.opportunities-section {
    padding: 4rem 1rem;
    background: var(--background);
}

.opportunities-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--foreground);
}

.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.opportunity-card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 4px 30px hsla(145, 63%, 42%, 0.15);
}

.opportunity-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.opportunity-card .discount {
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Depoimentos Section */
.testimonials-section {
    padding: 4rem 1rem;
    background: white;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--background);
    padding: 1.5rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.testimonial-video {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

/* Oferta Section */
.offer-section {
    padding: 4rem 1rem;
    background: linear-gradient(180deg, hsl(160, 40%, 97%) 0%, hsl(160, 50%, 92%) 100%);
    text-align: center;
}

.offer-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.offer-list {
    list-style: none;
    max-width: 500px;
    margin: 2rem auto;
    text-align: left;
}

.offer-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.offer-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Garantia Section */
.guarantee-section {
    padding: 4rem 1rem;
    background: white;
    text-align: center;
}

.guarantee-badge {
    max-width: 200px;
    margin: 0 auto 2rem;
}

/* Expert Section */
.expert-section {
    padding: 4rem 1rem;
    background: var(--background);
}

.expert-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.expert-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary);
}

/* Final CTA */
.final-cta {
    padding: 3rem 1rem;
    background: var(--primary);
    color: white;
    text-align: center;
}

.final-cta p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
    padding: 1.5rem 1rem;
    background: var(--foreground);
    color: hsla(0, 0%, 100%, 0.7);
    text-align: center;
    font-size: 0.875rem;
}

/* WhatsApp Button Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--whatsapp);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px hsla(142, 70%, 49%, 0.4);
    text-decoration: none;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

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

/* Animações */
@keyframes pulse-cta {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.animate-pulse-cta {
    animation: pulse-cta 2s ease-in-out infinite;
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .price-new {
        font-size: 2.5rem;
    }
    
    .opportunities-section h2,
    .testimonials-section h2,
    .offer-section h2 {
        font-size: 1.75rem;
    }
}
