:root {
    --primary-color: #042521;
    /* Dark Teal/Green */
    --secondary-color: #F46C38;
    /* Vibrant Orange */
    --accent-color: #083D36;
    /* Lighter Dark Teal */
    --text-white: #ffffff;
    --text-orange: #F46C38;
    --text-gray: #a0aec0;
    --white: #ffffff;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-white);
    background-color: var(--primary-color);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 800;
}

.highlight {
    color: var(--text-orange);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 40px;
    /* Levemente maior para mais impacto */
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    border: none;
}

.btn-login-top {
    display: inline-block;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.btn-login-top:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .btn-login-top {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(244, 108, 56, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(244, 108, 56, 0.6);
    background-color: #ff7e4f;
    /* Laranja mais vivo no hover */
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.0);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

/* Background watermark effect */
.hero::before {
    content: '↑';
    position: absolute;
    right: -100px;
    top: 50%;
    font-size: 40rem;
    color: rgba(255, 255, 255, 0.03);
    font-weight: 800;
    transform: translateY(-50%);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1.2;
}

.hero-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero-logo span {
    color: var(--text-orange);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    max-width: 600px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: var(--text-white);
    opacity: 0.9;
    max-width: 550px;
}

.hero-image-wrapper {
    flex: 0.8;
    position: relative;
}

.hero-image-wrapper img {
    max-width: 100%;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Floating orange arrow element behind image */
.hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    z-index: -1;
    border-radius: 20px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 100%, 0% 0%);
    opacity: 0.5;
}

/* Section Title Styling */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 2.22rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-gray);
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Pillar Grid */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pillar-card {
    background: var(--accent-color);
    padding: 40px;
    border-radius: 15px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.pillar-card:hover {
    transform: translateY(-5px);
    background-color: #0c4d44;
}

.pillar-num {
    font-size: 5rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 15px;
    display: block;
}

.pillar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.pillar-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* Comparison Section */
.comparison {
    padding: 80px 0;
    background-color: var(--white);
    color: var(--primary-color);
    margin-top: 50px;
    border-radius: 50px 50px 0 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--white);
    color: var(--primary-color);
}

.testimonial-wrapper {
    overflow: hidden;
    padding: 30px 0;
    width: 100%;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: walk-left 60s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

.testimonial-track img {
    height: 550px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: zoom-in;
}

.testimonial-track img:hover {
    transform: scale(1.15) translateY(-10px);
    z-index: 100;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

@keyframes walk-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-image-wrapper {
        margin-top: 50px;
    }

    .pillar-grid {
        grid-template-columns: 1fr;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 37, 33, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(8px);
}

.modal-content {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: modalIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalIn {
    from {
        transform: translateY(30px) scale(0.9);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--secondary-color);
}

.modal-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.modal-content p {
    color: #4a5568;
    margin-bottom: 30px;
}

/* Modal Form Styling */
.form-input {
    width: 100%;
    padding: 18px;
    border-radius: 12px;
    border: 2px solid #edf2f7;
    background: #f8fafc;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: var(--transition);
    color: var(--primary-color);
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(244, 108, 56, 0.1);
}

/* Pagination Premium Styling */
.pagination-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    list-style: none;
    gap: 10px;
}

.page-item {
    margin: 0;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.page-link:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.page-item.active .page-link,
.page-link.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(244, 108, 56, 0.2);
}

.page-item.disabled .page-link {
    opacity: 0.3;
    pointer-events: none;
}