/* ===== AustinData - Landing Page ===== */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #1f2937;
    background-color: #0b1220;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Header / Hero ---- */
.hero-wrapper {
    position: relative;
    background-image: linear-gradient(rgba(11, 18, 32, 0.75), rgba(11, 18, 32, 0.9)), url('../assets/backgroud_1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero {
    position: relative;
    color: #fff;
    padding: 40px 0 80px;
}

.hero .logo {
    display: block;
    margin: 0 auto 30px;
    max-height: 120px;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.85)) drop-shadow(0 2px 10px rgba(255, 255, 255, 0.5));
}

.hero-content {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    background: #ff6a00;
    color: #fff;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.btn-cta:hover {
    background: #e35d00;
    transform: translateY(-2px);
}

.btn-cta-secondary {
    background: transparent;
    border: 2px solid #fff;
    margin-left: 14px;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .btn-cta-secondary {
        margin-left: 0;
        margin-top: 12px;
    }
}

/* ---- Key numbers ---- */
.key-numbers {
    padding: 0 0 60px;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.number-card {
    text-align: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 24px 16px;
}

.number-card .number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ff6a00;
    margin-bottom: 8px;
}

.number-card .label {
    font-size: 0.9rem;
    color: #d1d5db;
}

/* ---- Modules section ---- */
.modules {
    background: #fff;
    padding: 70px 0;
}

.modules h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #0b1220;
}

.modules .subtitle {
    text-align: center;
    color: #4b5563;
    margin-bottom: 40px;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.module-card {
    background: #f5f7fa;
    border-radius: 10px;
    padding: 24px;
    border-left: 4px solid #ff6a00;
}

.module-card h3 {
    margin: 0 0 10px;
    color: #0b1220;
}

.module-card p {
    margin: 0;
    color: #4b5563;
    font-size: 0.92rem;
    line-height: 1.5;
}

/* ---- Screenshots section ---- */
.screenshots {
    background: #f5f7fa;
    padding: 0;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}

.screenshot-grid figure {
    margin: 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease-in-out;
}

.screenshot-grid figure:hover {
    transform: translateY(-6px);
}

.screenshot-grid img {
    width: 100%;
    display: block;
}

.screenshot-grid figcaption {
    padding: 12px 16px;
    font-size: 0.9rem;
    color: #374151;
    text-align: center;
}

/* ---- Carousel ---- */
.carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.carousel-track-wrapper {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.carousel-track {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    flex: 0 0 100%;
    max-width: 100%;
}

.carousel-slide img {
    width: 100%;
    display: block;
}

/* Variante full-bleed: carrossel ocupa toda a seção, como um fundo que muda de imagem */
.carousel-full {
    max-width: none;
    margin: 0;
}

.carousel-full .carousel-track-wrapper {
    border-radius: 0;
    box-shadow: none;
    height: 70vh;
    min-height: 420px;
    max-height: 720px;
}

.carousel-full .carousel-track {
    height: 100%;
}

.carousel-full .carousel-slide {
    height: 100%;
}

.carousel-full .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-full .carousel-btn-prev {
    left: 20px;
}

.carousel-full .carousel-btn-next {
    right: 20px;
}

.carousel-full .carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin-top: 0;
    z-index: 2;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(11, 18, 32, 0.6);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease-in-out;
    z-index: 2;
}

.carousel-btn:hover {
    background: #ff6a00;
}

.carousel-btn-prev {
    left: -10px;
}

.carousel-btn-next {
    right: -10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease-in-out;
}

.carousel-dot.active {
    background: #ff6a00;
}

@media (max-width: 600px) {
    .carousel-btn-prev {
        left: 6px;
    }

    .carousel-btn-next {
        right: 6px;
    }

    .carousel-full .carousel-track-wrapper {
        height: 45vh;
        min-height: 260px;
    }
}

/* ---- Lead form section ---- */
.lead-section {
    background: #0b1220;
    background-image: linear-gradient(rgba(11, 18, 32, 0.9), rgba(11, 18, 32, 0.95)), url('../assets/backgroud_2.jpg');
    background-size: cover;
    background-position: center;
    padding: 70px 0;
    color: #fff;
}

.lead-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
}

.lead-section .subtitle {
    text-align: center;
    color: #d1d5db;
    margin-bottom: 40px;
}

.lead-form {
    max-width: 640px;
    margin: 0 auto;
    background: #fff;
    color: #1f2937;
    border-radius: 14px;
    padding: 36px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 18px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.form-group label .required {
    color: #dc2626;
    margin-left: 3px;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    background: #f9fafb;
}

.form-control:focus {
    outline: none;
    border-color: #ff6a00;
    background: #fff;
}

select.form-control {
    height: 46px;
}

.field-error {
    color: #dc2626;
    font-size: 0.8rem;
    display: block;
    margin-top: 4px;
}

.form-submit {
    text-align: center;
    margin-top: 10px;
}

.form-submit .btn-cta {
    width: 100%;
    padding: 14px;
}

.success-message {
    background: #ecfdf5;
    border: 1px solid #10b981;
    color: #065f46;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

/* ---- Trust / compliance section ---- */
.trust-section {
    background: #0b1220;
    color: #fff;
    padding: 60px 0;
}

.trust-section h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.trust-list {
    list-style: none;
    max-width: 780px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    gap: 18px;
}

.trust-list li {
    position: relative;
    padding-left: 28px;
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.6;
}

.trust-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff6a00;
    font-weight: 700;
}

/* ---- Footer ---- */
.footer {
    background: #060a13;
    color: #9ca3af;
    text-align: center;
    padding: 24px 0;
    font-size: 0.85rem;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .lead-form {
        padding: 26px 20px;
    }
}
