/* Custom CSS for Hangar Storage */
/* Font Family: 'Plus Jakarta Sans', sans-serif */

:root {
    --primary: #556938;
    /* Green */
    --primary-dark: #3f4e29;
    --primary-light: #7c9359;
    --black: #000000;
    --dark: #1a1a1a;
    --gray-light: #f5f5f5;
    /* adjusted the #CCCCCC for ultra light background uses */
    --gray-border: #cccccc;
    --white: #ffffff;
    --text-main: #333333;
    --text-muted: #666666;

    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    --radius-md: 12px;
    --radius-lg: 24px;

    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.section-title {
    color: var(--primary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-header.center {
    text-align: center;
    margin-bottom: 48px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: height 0.3s ease;
}

.header.scrolled .header-container {
    height: 70px;
}

.logo img {
    height: 45px;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 100px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-color: var(--black);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(85, 105, 56, 0.85) 0%, rgba(0, 0, 0, 0.95) 100%), url('../img/BG-HEADER-PC.webp');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--gray-light);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-light);
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Quick Info overlapping */
.quick-info {
    position: relative;
    z-index: 10;
    margin-top: -50px;
}

.quick-info-container {
    display: flex;
    gap: 20px;
}

.info-card {
    flex: 1;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary);
}

.info-card strong {
    display: block;
    font-size: 1.1rem;
    color: var(--dark);
}

.info-card span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Sobre Nós */
.sobre {
    padding: 100px 0;
}

.sobre-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    background-color: var(--gray-light);
    height: 500px;
    overflow: hidden;
}

.placeholder-img {
    width: 100%;
    height: 100%;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 12px;
    align-items: center;
}

.experience-year {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-text {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
}

.sobre-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.sobre-list {
    margin-top: 32px;
}

.sobre-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 600;
    font-size: 1.05rem;
}

.sobre-list i {
    color: var(--primary);
    font-size: 1.5rem;
}

/* Diferenciais */
.diferenciais {
    padding: 100px 0;
    background-color: var(--gray-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom: 4px solid var(--primary);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(85, 105, 56, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.icon-box i {
    font-size: 2rem;
    color: var(--primary);
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.feature-card p {
    color: var(--text-muted);
}

/* Como Funciona */
.como-funciona {
    padding: 100px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    text-align: center;
    position: relative;
    padding: 30px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 24px;
    box-shadow: 0 0 0 10px rgba(85, 105, 56, 0.1);
}

.step-card h4 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.step-card p {
    color: var(--text-muted);
}

/* Galeria */
.galeria {
    padding: 100px 0;
    background-color: var(--gray-light);
}

.galeria-swiper {
    width: 100%;
    padding-bottom: 50px;
}

.galeria-img {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--gray-border) 0%, #e0e0e0 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.galeria-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary) !important;
}

/* Contato */
.contato {
    padding: 0;
    background-color: var(--white);
}

.contato-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background-color: var(--primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 50px;
    margin-bottom: 100px;
}

.contato-info {
    padding: 60px;
}

.text-light {
    color: var(--white);
}

.text-opacity {
    opacity: 0.9;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    padding: 16px;
    border-radius: 12px;
}

.contact-item span {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.contact-item strong {
    display: block;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

.contato-map {
    min-height: 400px;
}

.mt-4 {
    margin-top: 40px;
}

.btn-primary.btn-large.black-btn {
    background-color: var(--black);
}

.btn-primary.btn-large.black-btn:hover {
    background-color: #222;
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 50px;
    filter: brightness(0) invert(1);
    margin-bottom: 24px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 300px;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    z-index: 1000;
    transition: var(--transition);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.floating-whatsapp img {
    width: 100%;
    height: 100%;
    display: block;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-heading {
        font-size: 2.2rem;
    }

    .sobre-container {
        gap: 40px;
    }

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

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

    .contato-map {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .header-actions .btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.3s ease-in-out;
    }

    .nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-bg {
        background-image: linear-gradient(135deg, rgba(85, 105, 56, 0.85) 0%, rgba(0, 0, 0, 0.95) 100%), url('../img/BG-HEADER-MB.webp');
    }

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

    .section-heading {
        font-size: 1.8rem;
    }

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

    .quick-info-container {
        flex-direction: column;
        margin-top: 20px;
        gap: 15px;
    }

    .quick-info {
        margin-top: 0;
    }

    .sobre {
        padding: 60px 0;
    }

    .sobre-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .experience-badge {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        width: 90%;
        justify-content: center;
    }

    .diferenciais {
        padding: 60px 0;
    }

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

    .como-funciona {
        padding: 60px 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .galeria {
        padding: 60px 0;
    }

    .galeria-img {
        height: 300px;
    }

    .contato-info {
        padding: 40px 20px;
    }

    .contact-item {
        flex-direction: column;
        gap: 10px;
        align-items: center;
        text-align: center;
    }

    .contact-item i {
        font-size: 2rem;
        padding: 12px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .footer-brand div {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

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