/**
 * AGÊNCIA BL - STYLESHEET
 * Paleta de Cores:
 * White:     #FFFFFF
 * Dark Gray: #292929
 * Purple:    #360d85
 * Fuchsia:   #d61893
 * Citric:    #c7ff00
 */

:root {
    --white: #FFFFFF;
    --dark-gray: #292929;
    --purple: #360d85;
    --fuchsia: #d61893;
    --citric: #c7ff00;
    --light-gray: #f5f5f5;
    --border-gray: #e0e0e0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

/* ========================================
   HEADER E NAVEGAÇÃO
   ======================================== */

header {
    background-color: var(--white);
    border-bottom: 3px solid var(--purple);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--purple);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 200px;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

nav a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

nav a:hover {
    color: var(--purple);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--fuchsia);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.btn-atendimento {
    background-color: var(--fuchsia);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid var(--fuchsia);
    white-space: nowrap;
}

.btn-atendimento:hover {
    background-color: transparent;
    color: var(--fuchsia);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    background: linear-gradient(135deg, var(--purple) 0%, var(--dark-gray) 100%);
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    word-spacing: 0.1em;
}

.hero h1 .highlight {
    color: var(--citric);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--citric);
    color: var(--dark-gray);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid var(--citric);
    cursor: pointer;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--citric);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
    cursor: pointer;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--purple);
    transform: translateY(-2px);
}

/* ========================================
   SERVIÇOS
   ======================================== */

.services {
    background-color: var(--light-gray);
    padding: 6rem 2rem;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-gray);
    line-height: 1.3;
}

.section-title .highlight {
    color: var(--purple);
}

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

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--purple);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(54, 13, 133, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--fuchsia);
    margin-bottom: 1rem;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* ========================================
   GUARDIÃO HUB
   ======================================== */

.guardiao-hub {
    background: linear-gradient(135deg, var(--purple) 0%, var(--dark-gray) 100%);
    color: var(--white);
    padding: 6rem 2rem;
}

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

.guardiao-hub h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.3;
}

.guardiao-hub p {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--citric);
    backdrop-filter: blur(10px);
    text-align: center;
}

.feature i {
    font-size: 2rem;
    color: var(--citric);
    margin-bottom: 1rem;
    display: inline-block;
}

.feature h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
}

.btn-guardiao {
    display: inline-block;
    background-color: var(--citric);
    color: var(--dark-gray);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid var(--citric);
    margin-top: 2rem;
}

.btn-guardiao:hover {
    background-color: transparent;
    color: var(--citric);
}

/* ========================================
   SOBRE
   ======================================== */

.about {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(54, 13, 133, 0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    line-height: 1.3;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: justify;
}

.about-text .founder-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--purple);
    margin-top: 2rem;
    display: block;
}

.about-text .founder-title {
    color: var(--fuchsia);
    font-size: 0.95rem;
    display: block;
}

/* ========================================
   INSTAGRAM FEED
   ======================================== */

.instagram-section {
    background-color: var(--light-gray);
    padding: 6rem 2rem;
}

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

.instagram-header {
    text-align: center;
    margin-bottom: 3rem;
}

.instagram-header h2 {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.instagram-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

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

.instagram-post {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.instagram-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(54, 13, 133, 0.15);
}

.instagram-post > div {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-post-info {
    padding: 1rem;
    text-align: center;
}

.instagram-post-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.instagram-link {
    display: inline-block;
    color: var(--purple);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.instagram-link:hover {
    color: var(--fuchsia);
}

/* ========================================
   CONTATO
   ======================================== */

.contact {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--purple) 100%);
    color: var(--white);
    padding: 6rem 2rem;
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.3;
}

.contact p {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--citric);
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(199, 255, 0, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    background-color: var(--citric);
    color: var(--dark-gray);
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #b3ff00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(199, 255, 0, 0.3);
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 2rem;
    text-align: center;
    border-top: 3px solid var(--fuchsia);
}

footer p {
    opacity: 0.8;
    line-height: 1.6;
}

/* ========================================
   ANIMAÇÕES
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease;
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    nav a {
        display: block;
        text-align: center;
    }

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

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

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

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

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

    .instagram-feed {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem;
    }

    .logo {
        min-width: auto;
        width: 100%;
        justify-content: center;
    }

    nav ul {
        width: 100%;
    }

    .hero {
        padding: 3rem 1rem;
        min-height: auto;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .instagram-feed {
        grid-template-columns: 1fr;
    }

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