:root {
    --verde-selva: #1B4332;
    --cafe-tierra: #6F4E37;
    --crema-latte: #F5E6CA;
    --beige-arena: #EAD7C3;
    --naranja-tropical: #FF914D;
    --blanco: #FFFFFF;
    --negro-suave: #2C2C2C;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--negro-suave);
    background-color: var(--crema-latte);
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--verde-selva) 0%, var(--cafe-tierra) 100%);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Baloo 2', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--blanco);
}

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

.nav-menu a {
    color: var(--blanco);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--naranja-tropical);
    transition: width 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--blanco);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.hero {
    margin-top: 70px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--verde-selva) 0%, var(--cafe-tierra) 30%, var(--naranja-tropical) 70%, var(--crema-latte) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: floatShapes 8s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: rgba(245, 230, 202, 0.3);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: rgba(255, 145, 77, 0.2);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: rgba(111, 78, 55, 0.3);
    bottom: 30%;
    left: 15%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    background: rgba(234, 215, 195, 0.4);
    top: 10%;
    right: 30%;
    animation-delay: 1s;
}

.shape-5 {
    width: 60px;
    height: 60px;
    background: rgba(27, 67, 50, 0.2);
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 100vh;
    padding: 0 2rem;
    gap: 3rem;
}

.hero-content {
    animation: slideInLeft 1s ease;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    color: var(--verde-selva);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    animation: fadeInDown 1s ease 0.2s both;
}

.hero-title {
    margin-bottom: 1.5rem;
}

.title-main {
    display: block;
    font-family: 'Baloo 2', cursive;
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--blanco);
    text-shadow: 4px 4px 0px var(--cafe-tierra), 8px 8px 20px rgba(0,0,0,0.3);
    animation: bounceIn 1s ease 0.4s both;
    line-height: 0.9;
}

.title-accent {
    display: block;
    font-family: 'Baloo 2', cursive;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--naranja-tropical);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    animation: slideInRight 1s ease 0.6s both;
    margin-top: -0.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.8s both;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 1s both;
}

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

.cta-button.primary {
    background: linear-gradient(135deg, var(--naranja-tropical) 0%, #e8821f 100%);
    color: var(--blanco);
    box-shadow: 0 10px 30px rgba(255, 145, 77, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 145, 77, 0.6);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--blanco);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    animation: fadeInUp 1s ease 1.2s both;
}

.stat {
    text-align: center;
    color: var(--blanco);
}

.stat-number {
    display: block;
    font-family: 'Baloo 2', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: var(--naranja-tropical);
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease 0.5s both;
}

.hero-visual {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coffee-showcase {
    position: relative;
    z-index: 3;
}

.main-coffee-cup {
    position: relative;
    animation: cupFloat 4s ease-in-out infinite;
}

.cup-container {
    position: relative;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

.cup-body {
    width: 200px;
    height: 240px;
    background: linear-gradient(145deg, #ffffff 0%, var(--crema-latte) 50%, var(--beige-arena) 100%);
    border-radius: 0 0 100px 100px;
    position: relative;
    box-shadow: 
        inset -15px -15px 30px rgba(0,0,0,0.1),
        inset 10px 10px 20px rgba(255,255,255,0.8);
}

.cup-handle {
    position: absolute;
    right: -50px;
    top: 60px;
    width: 60px;
    height: 100px;
    border: 18px solid var(--crema-latte);
    border-left: none;
    border-radius: 0 60px 60px 0;
    box-shadow: 
        5px 15px 30px rgba(0,0,0,0.2),
        inset 5px 5px 10px rgba(255,255,255,0.5);
}

.coffee-surface {
    position: absolute;
    top: 25px;
    left: 20px;
    width: 160px;
    height: 140px;
    background: radial-gradient(circle, var(--cafe-tierra) 0%, #5d3c28 70%, #4a2e1f 100%);
    border-radius: 80px 80px 0 0;
    overflow: hidden;
}

.latte-foam {
    position: absolute;
    top: 10px;
    left: 20px;
    width: 120px;
    height: 100px;
    background: radial-gradient(ellipse, var(--crema-latte) 20%, rgba(245, 230, 202, 0.8) 40%, transparent 70%);
    border-radius: 50%;
    animation: foamSwirl 8s ease-in-out infinite;
}

.coffee-ripples {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 70% 60%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 50% 80%, rgba(255,255,255,0.1) 1px, transparent 1px);
    animation: rippleEffect 6s ease-in-out infinite;
}

.steam-effects {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 120px;
}

.steam-line {
    position: absolute;
    width: 3px;
    background: linear-gradient(to top, transparent 0%, rgba(255,255,255,0.7) 30%, rgba(255,255,255,0.4) 70%, transparent 100%);
    border-radius: 2px;
    animation: steamRise 4s ease-in-out infinite;
}

.steam-1 {
    height: 100px;
    left: 20px;
    animation-delay: 0s;
}

.steam-2 {
    height: 120px;
    left: 40px;
    animation-delay: 0.8s;
}

.steam-3 {
    height: 90px;
    left: 60px;
    animation-delay: 1.6s;
}

.steam-4 {
    height: 110px;
    left: 80px;
    animation-delay: 2.4s;
}

.exotic-atmosphere {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.mystical-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    background: var(--naranja-tropical);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.particle-2 {
    width: 12px;
    height: 12px;
    top: 60%;
    right: 20%;
    animation-delay: 1.5s;
}

.particle-3 {
    width: 6px;
    height: 6px;
    bottom: 30%;
    left: 25%;
    animation-delay: 3s;
}

.particle-4 {
    width: 10px;
    height: 10px;
    top: 40%;
    right: 15%;
    animation-delay: 4.5s;
}

.particle-5 {
    width: 14px;
    height: 14px;
    bottom: 20%;
    right: 30%;
    animation-delay: 6s;
}

.particle-6 {
    width: 8px;
    height: 8px;
    top: 80%;
    left: 40%;
    animation-delay: 7.5s;
}

.exotic-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.element-ring {
    position: absolute;
    border: 2px solid var(--verde-selva);
    border-radius: 50%;
    opacity: 0.3;
    animation: ringPulse 6s ease-in-out infinite;
}

.ring-1 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.ring-2 {
    width: 100px;
    height: 100px;
    bottom: 25%;
    right: 15%;
    animation-delay: 2s;
    border-color: var(--cafe-tierra);
}

.ring-3 {
    width: 80px;
    height: 80px;
    top: 70%;
    left: 60%;
    animation-delay: 4s;
    border-color: var(--naranja-tropical);
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 145, 77, 0.1) 0%, rgba(111, 78, 55, 0.05) 50%, transparent 80%);
    border-radius: 50%;
    z-index: 0;
    animation: glowPulse 8s ease-in-out infinite;
}

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

.section-title {
    font-family: 'Baloo 2', cursive;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: var(--verde-selva);
    margin-bottom: 3rem;
    position: relative;
}


.about {
    padding: 5rem 0;
    background: var(--blanco);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--negro-suave);
}

.about-text strong {
    color: var(--verde-selva);
    font-weight: 600;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.nature-element, .coffee-element, .animal-element {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--verde-selva);
    background: linear-gradient(135deg, var(--crema-latte) 0%, var(--beige-arena) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    animation: bounce 2s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.coffee-element {
    animation-delay: 0.3s;
}

.animal-element {
    animation-delay: 0.6s;
}

.menu {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--crema-latte) 0%, var(--beige-arena) 100%);
}

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

.menu-item {
    background: var(--blanco);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--verde-selva), var(--naranja-tropical));
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}


.menu-item h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 1.5rem;
    color: var(--verde-selva);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--naranja-tropical);
    margin-bottom: 1rem;
}

.menu-item p:last-child {
    color: var(--negro-suave);
    font-size: 0.95rem;
    line-height: 1.6;
}

.experience {
    padding: 5rem 0;
    background: var(--blanco);
}

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

.experience-card {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--crema-latte) 0%, var(--beige-arena) 100%);
    transition: all 0.3s ease;
}

.experience-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


.experience-card h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 1.5rem;
    color: var(--verde-selva);
    margin-bottom: 1rem;
}

.experience-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--verde-selva) 0%, var(--cafe-tierra) 100%);
    border-radius: 20px;
    color: var(--blanco);
}

.experience-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
}

.contact {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--beige-arena) 0%, var(--crema-latte) 100%);
}

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

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

.info-item h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 1.5rem;
    color: var(--verde-selva);
    margin-bottom: 1rem;
}

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

.contact-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    color: var(--blanco);
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp {
    background: #25D366;
}

.instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

.facebook {
    background: #1877F2;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

footer {
    background: linear-gradient(135deg, var(--verde-selva) 0%, var(--cafe-tierra) 100%);
    color: var(--blanco);
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Baloo 2', cursive;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-style: italic;
    margin-top: 1rem;
    opacity: 0.9;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(-3deg);
    }
    50% {
        transform: rotate(3deg);
    }
}

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

@keyframes floatShapes {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes cupFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

@keyframes steamRise {
    0% {
        opacity: 0.6;
        transform: translateY(0px) scaleX(1);
    }
    50% {
        opacity: 0.3;
        transform: translateY(-20px) scaleX(0.5);
    }
    100% {
        opacity: 0;
        transform: translateY(-40px) scaleX(0.2);
    }
}

@keyframes foamSwirl {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: rotate(180deg) scale(1.1);
        opacity: 1;
    }
}

@keyframes rippleEffect {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(20px, -20px) scale(1.2);
        opacity: 0.8;
    }
    75% {
        transform: translate(-15px, 15px) scale(0.8);
        opacity: 0.4;
    }
}

@keyframes ringPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--verde-selva) 0%, var(--cafe-tierra) 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .title-main {
        font-size: 3rem;
    }
    
    .title-accent {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .hero-visual {
        width: 350px;
        height: 350px;
    }
    
    .cup-container {
        transform: scale(0.8);
    }
    
    .exotic-atmosphere {
        transform: scale(0.9);
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
}