/*
Theme Name: Halluart Pinturas
Theme URI: https://halluart-whats-up.lovable.app
Author: Halluart
Author URI: https://halluart-whats-up.lovable.app
Description: Tema personalizado para Halluart Pinturas - Serviços profissionais de pintura
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: halluart
*/

/* ===== CSS Variables ===== */
:root {
    --primary: 24 100% 50%;
    --primary-foreground: 0 0% 100%;
    --secondary: 30 15% 20%;
    --secondary-foreground: 0 0% 100%;
    --background: 30 20% 98%;
    --foreground: 30 15% 15%;
    --muted: 30 10% 90%;
    --muted-foreground: 30 10% 40%;
    --accent: 24 100% 50%;
    --accent-foreground: 0 0% 100%;
    --border: 30 15% 85%;
    --ring: 24 100% 50%;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ===== Header ===== */
.site-header {
    background: linear-gradient(135deg, hsl(var(--secondary)) 0%, hsl(30 15% 15%) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo img {
    height: 60px;
    width: auto;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-navigation a {
    color: hsl(var(--primary-foreground));
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: hsl(var(--primary));
}

/* ===== Hero Section ===== */
.hero-section {
    background: linear-gradient(135deg, hsl(var(--secondary)) 0%, hsl(30 15% 15%) 100%);
    padding: 6rem 0;
    color: hsl(var(--primary-foreground));
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

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

.hero-description {
    font-size: 1.125rem;
    color: hsl(30 10% 70%);
    margin-bottom: 2rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

.btn-primary:hover {
    background-color: hsl(24 100% 45%);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid hsl(var(--primary));
    color: hsl(var(--primary));
}

.btn-outline:hover {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
}

/* ===== Services Section ===== */
.services-section {
    padding: 5rem 0;
    background-color: hsl(var(--background));
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: hsl(var(--foreground));
}

.section-subtitle {
    text-align: center;
    color: hsl(var(--muted-foreground));
    max-width: 600px;
    margin: 0 auto 3rem;
}

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

.service-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(24 100% 60%) 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-description {
    color: hsl(var(--muted-foreground));
}

/* ===== Benefits Section ===== */
.benefits-section {
    padding: 5rem 0;
    background-color: hsl(30 20% 95%);
}

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

.benefit-card {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(24 100% 60%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-description {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
}

/* ===== Results Section ===== */
.results-section {
    padding: 5rem 0;
    background-color: hsl(var(--background));
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.result-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.result-card video,
.result-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    color: white;
}

/* ===== Authority Section ===== */
.authority-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, hsl(var(--secondary)) 0%, hsl(30 15% 15%) 100%);
    color: white;
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.authority-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.authority-list li::before {
    content: "✓";
    color: hsl(var(--primary));
    font-weight: bold;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--primary));
}

.stat-label {
    color: hsl(30 10% 70%);
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(24 100% 40%) 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

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

.cta-section .btn:hover {
    background: hsl(30 20% 95%);
}

/* ===== Footer ===== */
.site-footer {
    background: hsl(var(--secondary));
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: hsl(var(--primary));
}

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

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: hsl(30 10% 70%);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: hsl(var(--primary));
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: hsl(30 10% 60%);
}

/* ===== WhatsApp Button ===== */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease;
}

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

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero-content,
    .authority-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .main-navigation {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}
