/* Custom Font - Rubik Semi Bold */
@font-face {
    font-family: 'Rubik';
    src: url('fonts/Rubik-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --primary-color: #D94A3D;
    --secondary-color: #E85D4E;
    --accent-green: #7CB342;
    --accent-orange: #FF9800;
    --accent-yellow: #FFC107;
    --dark-color: #2c2c2c;
    --light-color: #f5f5f5;
    --white-color: #ffffff;
    --success-color: #7CB342;
    --gradient: linear-gradient(135deg, #D94A3D 0%, #E85D4E 50%, #FF9800 100%);
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.nav {
    height: 110px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
}

.logo-img {
    height: 85px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s;
}

.logo-text {
    font-family: 'Rubik', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #D94A3D;
    text-transform: lowercase;
    letter-spacing: -0.5px;
    margin-left: -0.2rem;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    position: relative;
    font-size: 1rem;
    text-transform: lowercase;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(217, 74, 61, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
    background: var(--gradient);
    color: var(--white-color);
}

.nav-toggle,
.nav-close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

/* Hero Section */
.home {
    margin-top: 110px;
    min-height: calc(100vh - 110px);
    background: linear-gradient(135deg, #ffffff 0%, #fff5f0 50%, #fef9e7 100%);
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.home-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.home-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #D94A3D 0%, #FF9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.home-subtitle {
    font-size: 2rem;
    color: #FF9800;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: lowercase;
}

.home-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.home-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

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

.button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(217, 74, 61, 0.4);
}

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

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

.button-whatsapp {
    background: #25D366;
    color: var(--white-color);
}

.button-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-3px);
}

.button-block {
    width: 100%;
}

.home-img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.home-img-bg {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.hero-fruit-img {
    width: 200%;
    height: 200%;
    object-fit: contain;
    z-index: 2;
    padding: 20px;
}

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

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-title-container {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: lowercase;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
}

/* About Section */
.about {
    background: var(--white-color);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.about-box {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
    border-radius: 15px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.about-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.about-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-box:nth-child(2) .about-icon {
    color: var(--accent-orange);
}

.about-box:nth-child(3) .about-icon {
    color: var(--accent-green);
}

.about-box:nth-child(4) .about-icon {
    color: var(--accent-yellow);
}

.about-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.about-description {
    color: #666;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #ffffff 0%, #fff5f0 50%, #fef9e7 100%);
}

.services-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border-left: 4px solid var(--primary-color);
}

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

.service-card:nth-child(2) {
    border-left-color: var(--accent-orange);
}

.service-card:nth-child(3) {
    border-left-color: var(--accent-green);
}

.service-card:nth-child(4) {
    border-left-color: var(--accent-yellow);
}

.service-card:nth-child(5) {
    border-left-color: var(--primary-color);
}

.service-card:nth-child(6) {
    border-left-color: var(--accent-orange);
}

.service-icon-box {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card:nth-child(2) .service-icon-box {
    background: linear-gradient(135deg, #FF9800 0%, #FFC107 100%);
}

.service-card:nth-child(3) .service-icon-box {
    background: linear-gradient(135deg, #7CB342 0%, #8BC34A 100%);
}

.service-card:nth-child(4) .service-icon-box {
    background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
}

.service-icon {
    font-size: 2rem;
    color: var(--white-color);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-description {
    color: #666;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    background: var(--white-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: block;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.contact-detail {
    cursor: pointer;
    color: #666;
}


.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.contact-card:nth-child(2) .contact-icon {
    color: var(--accent-orange);
}

.contact-card:nth-child(3) .contact-icon {
    color: #25D366;
}

.contact-card:nth-child(4) .contact-icon {
    color: var(--accent-green);
}

.contact-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-detail {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    word-break: break-word;
}

.contact-detail:hover {
    color: var(--primary-color);
}

.contact-form-container {
    background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--light-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white-color);
    text-transform: lowercase;
}

.footer-title i {
    color: var(--white-color);
    opacity: 0.9;
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-links li {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-yellow);
}

.footer-links i {
    margin-right: 0.5rem;
    color: var(--white-color);
    opacity: 0.85;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom p {
    margin: 0.3rem 0;
}

.footer-bottom a {
    color: var(--accent-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.footer-bottom a:hover {
    color: var(--white-color);
    text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background: var(--white-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 1.5rem;
        z-index: 999;
    }

    .nav-menu.show-menu {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        width: 100%;
        border-radius: 8px;
    }

    .nav-link::before {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav-close {
        display: none;
    }

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

    .home-img {
        order: -1;
        display: none;
    }

    .home-title {
        font-size: 2.5rem;
    }

    .home-subtitle {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .nav {
        height: 90px;
        padding: 0.6rem 1rem;
    }

    .nav-menu {
        top: 90px;
    }
    
    .logo-img {
        height: 70px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .nav-toggle {
        display: flex;
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 576px) {
    .container {
        padding: 0 0.8rem;
    }
    
    .nav {
        height: 85px;
        padding: 0.6rem 0.8rem;
    }

    .nav-menu {
        top: 85px;
        padding: 1.5rem;
    }
    
    .nav-logo {
        gap: 0.2rem;
    }
    
    .logo-img {
        height: 65px;
    }
    
    .logo-text {
        font-size: 1.4rem;
        margin-left: -0.1rem;
    }
    
    .nav-toggle {
        font-size: 1.5rem;
        padding: 0.5rem;
        margin-left: auto;
    }

    .nav-link {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .home {
        margin-top: 85px;
        padding: 2rem 0;
        min-height: auto;
    }

    .home-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .home-subtitle {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .home-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

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

    .hero-fruit-img {
        width: 90%;
        height: 90%;
    }
    
    .button {
        font-size: 0.9rem;
        padding: 0.9rem 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
