/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2E7D32;
}

.logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2E7D32;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2E7D32;
    transition: width 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/cannabis-leaf.jpg') center/cover;
    opacity: 0.1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 125, 50, 0.8);
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #2E7D32;
}

.btn-primary:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2E7D32;
    transform: translateY(-2px);
}

.hero-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-image {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-image.doctor {
    width: 200px;
    height: 250px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-image.child {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
}

.floating-image.cannabis {
    width: 120px;
    height: 120px;
    top: 30%;
    left: 10%;
    animation-delay: 1s;
}

.floating-image.leaf {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 15%;
    animation-delay: 3s;
}

/* Sections */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2E7D32;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #4CAF50;
    border-radius: 2px;
}

/* Sobre Section */
.sobre {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.sobre-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.sobre-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.sobre-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2E7D32;
}

/* Produtos Section */
.produtos {
    padding: 5rem 0;
}

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

.produto-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.produto-card:hover {
    transform: translateY(-10px);
}

.produto-image {
    height: 200px;
    overflow: hidden;
}

.produto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.produto-card:hover .produto-image img {
    transform: scale(1.1);
}

.produto-card h3 {
    font-size: 1.5rem;
    color: #2E7D32;
    margin: 1rem 1.5rem 0.5rem;
}

.produto-card p {
    margin: 0 1.5rem 1rem;
    color: #666;
}

.produto-card ul {
    list-style: none;
    margin: 0 1.5rem 1.5rem;
}

.produto-card li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.produto-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

/* Médicos Section */
.medicos {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.medicos-text h3 {
    font-size: 2rem;
    color: #2E7D32;
    margin-bottom: 1rem;
}

.medicos-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.processo h4 {
    font-size: 1.3rem;
    color: #2E7D32;
    margin-bottom: 1rem;
}

.processo-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-number {
    width: 30px;
    height: 30px;
    background: #2E7D32;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.step p {
    margin: 0;
    flex: 1;
    text-align: left;
}

.medicos-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.medicos-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* App Section */
.app {
    padding: 5rem 0;
}

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

.app-features h3 {
    font-size: 2rem;
    color: #2E7D32;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: #2E7D32;
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2E7D32;
}

.app-download {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #2E7D32, #4CAF50);
    border-radius: 20px;
    color: white;
}

.app-download h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-app {
    background: white;
    color: #2E7D32;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 10px;
}

.btn-app:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

/* Benefícios Section */
.beneficios {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.beneficio-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.beneficio-card:hover {
    transform: translateY(-10px);
}

.beneficio-card i {
    font-size: 3rem;
    color: #2E7D32;
    margin-bottom: 1rem;
}

.beneficio-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2E7D32;
}

/* Footer */
.footer {
    background: #2E7D32;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #4CAF50;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4CAF50;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #4CAF50;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

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

    .hamburger {
        display: flex;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .floating-image {
        display: none;
    }

    .medicos-content {
        grid-template-columns: 1fr;
    }

    .app-content {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .processo-steps {
        gap: 0.5rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .produtos-grid,
    .sobre-grid {
        grid-template-columns: 1fr;
    }
}


/* Hover effect for all benefit cards */
.beneficio-card:hover {
    background-color: #4CAF50;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.3);
}

.beneficio-card:hover i {
    color: white;
}

.beneficio-card:hover h3 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}


/* WhatsApp Contact Section */
.whatsapp-contact {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border-left: 4px solid #25D366;
}

.whatsapp-contact h4 {
    color: #2E7D32;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.whatsapp-contact p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.whatsapp-btn i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .whatsapp-contact {
        margin-top: 1.5rem;
        padding: 1rem;
    }
    
    .whatsapp-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
}


/* Global hover effects for cards throughout the site */
.sobre-card:hover h3,
.produto-card:hover h3,
.feature:hover h4,
.step:hover {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hover effects for sobre cards */
.sobre-card:hover {
    background-color: #4CAF50;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.3);
}

.sobre-card:hover .card-icon i {
    color: white;
}

/* Hover effects for produto cards */
.produto-card:hover {
    background-color: #4CAF50;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.3);
}

.produto-card:hover h3 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.produto-card:hover p {
    color: white;
}

.produto-card:hover ul li {
    color: white;
}

/* Hover effects for app features */
.feature:hover {
    background-color: #4CAF50;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.3);
}

.feature:hover i {
    color: white;
}

/* Hover effects for process steps */
.step:hover {
    background-color: #4CAF50;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}

.step:hover .step-number {
    background-color: white;
    color: #4CAF50;
    text-shadow: none;
}

/* Ensure all cards have transition */
.sobre-card,
.produto-card,
.feature,
.step {
    transition: all 0.3s ease;
    cursor: pointer;
}


/* Logo styling */
.logo-img {
    width: 32px;
    height: 32px;
    margin-right: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
    .logo-img {
        width: 28px;
        height: 28px;
    }
}


/* Rounded corners for process steps on hover */
.step:hover {
    background-color: #4CAF50;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
    border-radius: 15px;
}

/* Enhanced shadow for medicos image */
.medicos-image img {
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}


/* App Exclusive Notice */
.app-exclusive-notice {
    background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.2);
}

.exclusive-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    color: white;
}

.exclusive-content i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.exclusive-text {
    flex: 1;
}

.exclusive-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.exclusive-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.btn-associate {
    background: white;
    color: #2E7D32;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-associate i {
    color: #2E7D32;
}

.btn-associate:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #2E7D32;
    text-decoration: none;
}

.btn-associate:hover i {
    color: #2E7D32;
}

/* Adjust app content layout */
.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.app-features,
.app-download {
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.app-features {
    background: #f8f9fa;
}

.app-download {
    background: linear-gradient(135deg, #2E7D32 0%, #4CAF50 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.app-features h3 {
    font-size: 1.5rem;
    color: #2E7D32;
    margin-bottom: 1.2rem;
    text-align: center;
}

.app-download h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.2rem;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    flex: 1;
}

.feature {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature h4 {
    font-size: 1rem;
    margin: 0.5rem 0 0.3rem;
}

.feature p {
    font-size: 0.85rem;
    margin: 0;
}

.app-download p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    max-width: 200px;
}

.btn-app {
    background: white;
    color: #2E7D32;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-app:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .exclusive-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .exclusive-content i {
        font-size: 2.5rem;
    }
    
    .btn-associate {
        justify-content: center;
        width: 100%;
    }
    
    .app-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .download-buttons {
        max-width: 100%;
    }
}

