* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #006837;
    --primary-yellow: #F9DC00;
    --dark-gray: #3D3D3D;
    --medium-gray: #5A5A5A;
    --black: #000000;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --text-color: #333333;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background-color: transparent;
    box-shadow: none;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--primary-green);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    position: fixed;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 20px;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 72px;
    width: auto;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.25));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.nav-menu a:hover {
    color: var(--primary-yellow);
    border-bottom-color: var(--primary-yellow);
}

.lang-float {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 1100;
}

.lang-float-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.lang-float-toggle:hover {
    background: rgba(0, 0, 0, 0.65);
}

.lang-code {
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
}

.lang-flag {
    font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
    display: inline-block;
    width: 22px;
    height: 16px;
    border-radius: 3px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lang-flag--br {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 20'%3E%3Crect width='28' height='20' fill='%23006837'/%3E%3Cpolygon points='14,2 26,10 14,18 2,10' fill='%23F9DC00'/%3E%3Ccircle cx='14' cy='10' r='4.2' fill='%2300226B'/%3E%3C/svg%3E");
}

.lang-flag--es {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 20'%3E%3Crect width='28' height='20' fill='%23AA151B'/%3E%3Crect y='5' width='28' height='10' fill='%23F1BF00'/%3E%3C/svg%3E");
}

.lang-flag--en {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 20'%3E%3Crect width='28' height='20' fill='%23012169'/%3E%3Cpath d='M0 0 L28 20 M28 0 L0 20' stroke='%23FFFFFF' stroke-width='6' stroke-linecap='butt'/%3E%3Cpath d='M0 0 L28 20 M28 0 L0 20' stroke='%23C8102E' stroke-width='3' stroke-linecap='butt'/%3E%3Cpath d='M14 0 V20 M0 10 H28' stroke='%23FFFFFF' stroke-width='8' stroke-linecap='butt'/%3E%3Cpath d='M14 0 V20 M0 10 H28' stroke='%23C8102E' stroke-width='4' stroke-linecap='butt'/%3E%3C/svg%3E");
}

.lang-float-menu {
    position: absolute;
    left: 0;
    bottom: calc(100% + 10px);
    width: 180px;
    padding: 8px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
    display: none;
}

.lang-float.open .lang-float-menu {
    display: block;
}

.lang-option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    text-align: left;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.12);
}

.lang-option[aria-selected="true"] {
    background: rgba(249, 220, 0, 0.18);
}

.lang-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

.hero {
    position: relative;
    margin-top: 0;
    padding: 0;
    background-color: var(--white);
}

.hero-image {
    width: 100%;
    height: 75vh;
    background: url('imagens/coconut2.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 2;
    overflow: visible;
}

.hero-image::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 240px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 104, 55, 0.45) 55%, rgba(0, 104, 55, 1) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    background: var(--primary-green);
    color: var(--white);
    padding: 50px 40px 110px;
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 0;
}

.hero-content::before {
    display: none;
}

.hero-title {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.cta-button {
    background-color: var(--primary-yellow);
    color: var(--primary-green);
    padding: 18px 45px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background-color: #ffed4e;
}

.wave-divider {
    position: relative;
}

.wave-divider::before {
    content: "";
    position: absolute;
    left: 0;
    top: -1px;
    width: 100%;
    height: 46px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center top;
    pointer-events: none;
    opacity: 0.95;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0,34 C120,10 240,10 360,22 C480,34 600,54 720,50 C840,46 960,22 1080,20 C1200,18 1320,34 1380,42 L1440,46' fill='none' stroke='rgba(0,104,55,0.26)' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M0,40 C120,16 240,16 360,28 C480,40 600,56 720,52 C840,48 960,28 1080,26 C1200,24 1320,38 1380,46 L1440,50' fill='none' stroke='rgba(249,220,0,0.30)' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.wave-divider > .container {
    position: relative;
    z-index: 1;
}

.about {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.about h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-weight: 700;
}

.about-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 4rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.about-card {
    background-color: var(--light-bg);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.about-icon svg {
    width: 52px;
    height: 52px;
}

.about-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.about-card p {
    color: var(--medium-gray);
    line-height: 1.7;
}

.origin {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(0, 104, 55, 0.035), rgba(0, 0, 0, 0) 240px), var(--white);
}

.origin h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-weight: 700;
}

.origin-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 4rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

.origin-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 2.25rem;
    align-items: start;
}

.origin-points {
    display: grid;
    gap: 1.25rem;
    min-width: 0;
}

.origin-point {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 14px;
    background-color: var(--light-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.origin-point-icon {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--primary-green);
}

.origin-point-icon svg {
    width: 26px;
    height: 26px;
    margin-top: 2px;
}

.origin-point-content h3 {
    color: var(--primary-green);
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.origin-point-content p {
    color: var(--medium-gray);
    line-height: 1.7;
}

.origin-map-card {
    background-color: var(--light-bg);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    aspect-ratio: 16 / 9;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    align-self: start;
}

.origin-map-frame {
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background-color: rgba(0, 0, 0, 0.02);
}

.water-diff {
    padding: 100px 0;
    background-color: var(--white);
}

.water-diff h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-weight: 700;
}

.water-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 4rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

.water-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.water-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.water-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.water-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.water-icon svg {
    width: 52px;
    height: 52px;
}

.water-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.water-card p {
    color: var(--medium-gray);
    line-height: 1.7;
}

.specs {
    padding: 100px 0;
    background-color: var(--white);
}

.specs h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-weight: 700;
}

.specs-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 4rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.specs-item {
    background-color: var(--light-bg);
    padding: 2.25rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 1rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.specs-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.specs-icon {
    color: var(--primary-green);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.specs-icon svg {
    width: 28px;
    height: 28px;
    margin-top: 3px;
}

.specs-content h3 {
    color: var(--primary-green);
    margin-bottom: 0.4rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.specs-content p {
    color: var(--medium-gray);
    line-height: 1.7;
}

.global-presence {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green), #005a2e);
    color: var(--white);
}

.global-presence h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.global-text {
    text-align: center;
    font-size: 1.15rem;
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.global-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 500;
}

.business {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.business h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--primary-green);
    font-weight: 700;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.business-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-yellow);
}

.business-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.business-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.business-icon svg {
    width: 36px;
    height: 36px;
}

.business-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.business-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

.export-services {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.export-services h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--primary-green);
    font-weight: 700;
}

.export-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.export-card {
    background-color: var(--light-bg);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.export-card h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 3px solid var(--primary-yellow);
    padding-bottom: 0.8rem;
}

.export-card ul {
    list-style: none;
    padding: 0;
}

.export-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.8rem 0;
    color: var(--medium-gray);
    line-height: 1.6;
}

.list-icon {
    color: var(--primary-green);
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.quality {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.quality h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-weight: 700;
}

.quality-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 4rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.quality-item {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.quality-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.quality-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.quality-icon svg {
    width: 52px;
    height: 52px;
}

.quality-item h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.quality-item p {
    color: var(--medium-gray);
    line-height: 1.7;
}

.contact {
    padding: 100px 0;
    background-color: var(--white);
}

.contact h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-weight: 700;
}

.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--medium-gray);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.contact-form button {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background-color: #005a2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-info p {
    color: #cccccc;
    font-size: 0.95rem;
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 66px;
        flex-direction: column;
        background-color: var(--primary-green);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.2);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-image {
        height: 60vh;
    }

    .hero-image::after {
        height: 180px;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 104, 55, 0.42) 55%, rgba(0, 104, 55, 1) 100%);
    }

    .hero-content {
        padding: 40px 20px 80px;
        margin-top: 0;
    }

    .hero-content::before {
        height: 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .export-grid {
        grid-template-columns: 1fr;
    }

    .origin-grid {
        grid-template-columns: 1fr;
    }

    .origin-map-frame {
        min-height: 260px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about h2,
    .origin h2,
    .water-diff h2,
    .specs h2,
    .business h2,
    .export-services h2,
    .quality h2,
    .contact h2,
    .global-presence h2 {
        font-size: 2.2rem;
    }

    .about,
    .origin,
    .water-diff,
    .specs,
    .business,
    .export-services,
    .quality,
    .contact,
    .global-presence {
        padding: 60px 0;
    }

    .origin-intro,
    .water-intro,
    .specs-intro {
        margin-bottom: 2.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }
}
