/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --primary: #f59e0b;
    --primary-hover: #d97706;
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.5);
    --border: rgba(255, 255, 255, 0.1);
    --glow-purple: rgba(147, 51, 234, 0.5);
    --glow-orange: rgba(245, 158, 11, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #0d0d15 0%, #0a0a0f 100%);
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hero-glow-1 {
    width: 600px;
    height: 400px;
    background: var(--glow-purple);
    top: -100px;
    right: -100px;
    opacity: 0.4;
    animation: pulse-glow 8s ease-in-out infinite;
}

.hero-glow-2 {
    width: 400px;
    height: 300px;
    background: var(--glow-orange);
    bottom: 0;
    left: 20%;
    opacity: 0.3;
    animation: pulse-glow 6s ease-in-out infinite reverse;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 80px 0;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

.services-list {
    list-style: none;
    margin-bottom: 35px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.services-list li {
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chevron {
    color: var(--primary);
    font-weight: bold;
    font-size: 0.8rem;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease 0.3s backwards;
}

.phone-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--glow-purple) 0%, transparent 70%);
    filter: blur(60px);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.phone-img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite;
}

.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
    pointer-events: none;
}

/* ==================== WHATSAPP NOTIFICATIONS ==================== */
.whatsapp-notifications {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.notification-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 12px 16px;
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(50px);
}

.notification-1 {
    animation: slideUpAndFade 5s ease 3.5s infinite;
}

.notification-2 {
    animation: slideUpAndFade 5s ease 4s infinite;
}

@keyframes slideUpAndFade {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    10% {
        opacity: 1;
        transform: translateY(0);
    }
    70% {
        opacity: 1;
        transform: translateY(0);
    }
    90% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 0;
        transform: translateY(-50px);
    }
}

.notification-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.notification-icon svg {
    width: 100%;
    height: 100%;
}

.notification-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.notification-app {
    font-size: 10px;
    font-weight: 600;
    color: #8e8e93;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.notification-time {
    font-size: 10px;
    color: #8e8e93;
}

.notification-name {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.notification-message {
    font-size: 13px;
    color: #3c3c43;
    opacity: 0.8;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 12px 24px;
}

.btn-whatsapp:hover {
    background: #20bd5a;
}

.btn-route {
    background: var(--primary);
    color: #000;
    padding: 12px 24px;
}

.btn-route:hover {
    background: var(--primary-hover);
}

/* ==================== ABOUT ==================== */
.about {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glow-purple), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--glow-purple), transparent 30%);
    animation: rotate-border 8s linear infinite;
    opacity: 0.3;
}

@keyframes rotate-border {
    100% { transform: rotate(360deg); }
}

.image-frame img {
    position: relative;
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.about-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.about-list {
    list-style: none;
    margin: 20px 0;
}

.about-list li {
    position: relative;
    padding: 5px 0 5px 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.about-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* ==================== FEATURES ==================== */
.features {
    padding: 80px 0;
    background: var(--bg-darker);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--primary);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ==================== LOCATION ==================== */
.location {
    padding: 80px 0;
    background: var(--bg-dark);
}

.location-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.location-info {
    padding: 40px;
}

.location-info h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.address {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.location-buttons {
    display: flex;
    gap: 12px;
}

.location-map {
    min-height: 280px;
    background: #1a1a2e;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 280px;
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 60px 0 30px;
    background: var(--bg-darker);
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 130px;
    width: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.social-links a svg {
    width: 18px;
    height: 18px;
}

.social-links a:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px);
}

.footer-description {
    color: var(--text-muted);
    font-size: 0.8rem;
    max-width: 500px;
    margin: 0 auto 15px;
    line-height: 1.6;
}

.cnpj {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--primary);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-image {
        order: 0;
    }
    
    .services-list {
        display: inline-block;
        text-align: left;
    }
    
    .whatsapp-notifications {
        left: 50%;
        top: auto;
        bottom: -20px;
        transform: translateX(-50%);
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .notification-card {
        min-width: 180px;
        padding: 10px 12px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .location-card {
        grid-template-columns: 1fr;
    }
    
    .location-map {
        min-height: 250px;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: auto;
        padding: 60px 0;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .phone-img {
        max-height: 350px;
    }
    
    .hero-glow {
        display: none;
    }
    
    .location-buttons {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}
