/* Estilos Gerais */
:root {
    --primary-color: #4CAF50;
    --secondary-color: #388E3C;
    --accent-color: #e6ff00;
    --text-color: #ffffff;
    --dark-bg: #121212;
    --dark-bg-gradient: linear-gradient(135deg, #121212 0%, #1a2a2a 100%);
    --card-bg: rgba(255, 255, 255, 0.05);
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --border-green: #4CAF50;
    --border-yellow: #e6ff00;
    --border-blue: #2196F3;
    --border-purple: #9C27B0;
    --sermentis-green: #57794c;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--dark-bg);
    background-image: var(--dark-bg-gradient);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

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

a:hover {
    color: var(--primary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-4, .col-lg-4, .col-lg-6, .col-md-6 {
    padding: 0 15px;
    margin-bottom: 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-line {
    height: 2px;
    width: 0;
    background-color: var(--accent-color);
    margin: 0 auto 20px;
    max-width: 100px;
}

.section-dots {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.section-dots::before {
    content: "||||||||||||||||||||||||";
    letter-spacing: 2px;
    color: var(--accent-color);
    opacity: 0.5;
    font-size: 12px;
}

.highlight {
    color: var(--accent-color);
    font-weight: 700;
}

/* Header / Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg-gradient);
    z-index: -1;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.sermentis-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    margin: 0;
    padding-left: 30px;
    background: linear-gradient(to right, #57794c, #6a9a5c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    letter-spacing: 1px;
}

.sermentis-logo-footer {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--sermentis-green);
    letter-spacing: 1px;
    margin: 0;
}

.logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    position: relative;
    z-index: 200; /* Aumentado para ficar acima dos feature badges */
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background-color: transparent;
    color: var(--accent-color) !important;
    padding: 8px 20px;
    border-radius: var(--border-radius);
    border: 2px solid var(--accent-color);
}

.nav-cta:hover {
    background-color: var(--accent-color);
    color: var(--dark-bg) !important;
}

.nav-cta::after {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin-bottom: 5px;
    border-radius: 3px;
    transition: var(--transition);
}

.hero-content {
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-top: 60px; /* Adicionado para dar mais espaço no topo */
}

.feature-badges-container {
    margin-top: 40px;
}

.feature-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 50;
    flex-wrap: wrap; /* Permite que os badges quebrem para a próxima linha em telas menores */
}

.feature-badge {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    margin-bottom: 10px; /* Espaço adicional entre os badges quando quebram para a próxima linha */
}

.feature-badge.green {
    border: 1px solid var(--border-green);
}

.feature-badge.yellow {
    border: 1px solid var(--border-yellow);
}

.feature-badge.blue {
    border: 1px solid var(--border-blue);
}

.feature-badge::before {
    content: "•";
    margin-right: 8px;
    font-size: 1.2rem;
}

.feature-badge.green::before {
    color: var(--border-green);
}

.feature-badge.yellow::before {
    color: var(--border-yellow);
}

.feature-badge.blue::before {
    color: var(--border-blue);
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--dark-bg);
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Animações para a seção hero */
.animated-text {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}

.animated-text-delay-1 {
    animation-delay: 0.2s;
}

.animated-text-delay-2 {
    animation-delay: 0.4s;
}

.animated-text-delay-3 {
    animation-delay: 0.6s;
}

.animated-text-delay-4 {
    animation-delay: 0.8s;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

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

.floating-element {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    position: relative;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 40px;
    height: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.leaf-silhouette {
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(87, 121, 76, 0.3) 0%, rgba(106, 154, 92, 0.1) 70%, rgba(0, 0, 0, 0) 100%);
    border-radius: 50% 0 50% 50%;
    filter: blur(20px);
    z-index: -1;
    opacity: 0.6;
}

.leaf-silhouette::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 40%;
    width: 40%;
    height: 40%;
    background: radial-gradient(ellipse at center, rgba(230, 255, 0, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    filter: blur(15px);
}

/* Problems Section */
.problems-section {
    padding: 100px 0;
    position: relative;
}

.truth-statement {
    text-align: center;
    margin-bottom: 60px;
}

.truth-statement h3 {
    font-size: 2.2rem;
}

.problems-container {
    margin-top: 40px;
}

.problem-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
}

.problem-card.animated {
    animation: fadeInUp 1s ease-out forwards;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.problem-icon {
    margin-bottom: 20px;
}

.icon-placeholder {
    width: 60px;
    height: 60px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent-color);
}

.problem-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    position: relative;
}

.service-card {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
}

.service-card.animated {
    animation: fadeInUp 1s ease-out forwards;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.1);
}

.service-card.green {
    border-left: 3px solid var(--border-green);
}

.service-card.yellow {
    border-left: 3px solid var(--border-yellow);
}

.service-card.blue {
    border-left: 3px solid var(--border-blue);
}

.service-icon {
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    position: relative;
    color: var(--accent-color);
}

.service-link::after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.service-link:hover::after {
    margin-left: 10px;
}

/* Results Section */
.results-section {
    padding: 100px 0;
    position: relative;
}

.stats-container {
    margin-top: 40px;
}

.stat-card {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
}

.stat-card.animated {
    animation: fadeInUp 1s ease-out forwards;
}

.stat-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.stat-description {
    font-size: 1.1rem;
}

.stat-quote {
    font-style: italic;
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.stat-author {
    font-weight: 600;
    margin-top: 10px;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    position: relative;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-form {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
}

.contact-form.animated {
    animation: fadeInUp 1s ease-out forwards;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
}

.form-group input:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 255, 0, 0.2);
}

.submit-button {
    background-color: var(--accent-color);
    color: var(--dark-bg);
    border: none;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    border: 2px solid var(--accent-color);
}

.submit-button:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.form-success {
    display: none;
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--accent-color);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-top: 20px;
    text-align: center;
    border: 1px solid var(--accent-color);
}

/* Footer */
.footer {
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--text-color);
    padding: 60px 0 30px;
    position: relative;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.social-links {
    margin-bottom: 15px;
}

.social-link {
    color: var(--text-color);
    margin-left: 20px;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--accent-color);
}

.copyright {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Elementos de fundo */
.bg-element {
    position: absolute;
    z-index: 0;
    opacity: 0.1;
}

.bg-element-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
}

.bg-element-2 {
    bottom: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    opacity: 0.5;
}
