/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--light-green) 0%, #ffffff 100%);
    padding: 100px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.page-hero .lead {
    font-size: 1.2rem;
    color: var(--light-text);
}

/* Service Detail Cards */
.service-detail-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-detail-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.service-detail-card:hover img {
    transform: scale(1.05);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 25px;
    position: relative;
    z-index: 1;
}

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

.service-detail-card h2 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.service-detail-card p {
    color: var(--light-text);
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.service-features i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    background: var(--light-green);
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
}

.accordion-button {
    background: var(--white);
    color: var(--primary-green);
    font-weight: 500;
    padding: 20px;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-green);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-green);
}

.accordion-body {
    background: var(--white);
    padding: 20px;
    color: var(--text-color);
}

/* About History */
.about-history {
    background: var(--white);
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 25px;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.about-image img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.about-image img:hover {
    transform: translateY(-10px);
}

/* Mission and Values */
.mission-card,
.values-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
}

.mission-card:hover,
.values-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-card h2,
.values-card h2 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.mission-card p {
    color: var(--text-color);
    font-size: 1.1rem;
    margin: 0;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 1.1rem;
}

.values-list i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

/* Team Section */
.team-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

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

.team-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 50%;
    border: 5px solid var(--light-green);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.team-info h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.team-title {
    color: var(--secondary-green);
    font-weight: 500;
    margin-bottom: 10px;
}

.team-description {
    color: var(--light-text);
    font-size: 0.9rem;
    margin: 0;
}

/* Certifications */
.certification-card {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.certification-card img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: var(--transition);
}

.certification-card:hover img {
    filter: grayscale(0%);
}

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

.contact-info {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info h2 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-top: 5px;
}

.info-item h3 {
    font-size: 1.1rem;
    color: var(--secondary-green);
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}

.social-links h3 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-green);
    color: var(--primary-green);
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 25px;
}

.form-group label {
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(44, 122, 81, 0.25);
}

textarea.form-control {
    resize: vertical;
}

.btn-primary {
    background: var(--primary-green);
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    margin-top: 50px;
}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
}

/* Responsividade */
@media (max-width: 768px) {
    .page-hero {
        padding: 80px 0 40px;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .service-detail-card {
        padding: 30px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    .service-detail-card h2 {
        font-size: 1.5rem;
    }

    .about-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .team-image {
        width: 120px;
        height: 120px;
    }

    .team-info h3 {
        font-size: 1.3rem;
    }

    .contact-info,
    .contact-form {
        padding: 20px;
    }

    .info-item {
        gap: 10px;
    }

    .info-item i {
        font-size: 1.2rem;
    }

    .map-container iframe {
        height: 300px;
    }
}

/* Contact Page Styles */
.contact-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/acam_app/assets/img/contact-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 120px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 122, 81, 0.85), rgba(58, 139, 94, 0.75));
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-hero .lead {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-buttons .btn-primary {
    background: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.hero-buttons .btn-primary:hover {
    background: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(44, 122, 81, 0.3);
}

.hero-buttons .btn-success {
    background: #25D366;
    border: 2px solid #25D366;
}

.hero-buttons .btn-success:hover {
    background: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0;
        min-height: 50vh;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero .lead {
        font-size: 1.2rem;
    }

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

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

/* Contact Info Styles */
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-wrapper i {
    font-size: 20px;
    color: var(--primary-green);
}

.info-item h4 {
    color: var(--primary-green);
    margin-bottom: 10px;
}

.info-item p {
    margin-bottom: 5px;
}

.info-item .btn-link {
    color: var(--primary-green);
    text-decoration: none;
    transition: var(--transition);
}

.info-item .btn-link:hover {
    color: var(--secondary-green);
}

/* Social Links */
.social-links {
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control, .form-select {
    border: 1px solid #e0e0e0;
    padding: 12px;
    border-radius: 5px;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(44, 122, 81, 0.25);
}

.form-label {
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 8px;
}

.btn-primary {
    padding: 12px 30px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 122, 81, 0.3);
}

/* Map Section */
.map-section {
    margin-top: 50px;
}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0;
    }
    
    .info-item {
        padding: 15px;
    }
    
    .icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .contact-form {
        padding: 20px;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Benefits Section */
.benefits-section {
    background: var(--white);
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header .lead {
    color: var(--text-color);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--primary-green);
}

.benefit-card h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-color);
    margin: 0;
}

/* Treatments Section */
.treatments-section {
    background: var(--light-green);
}

.treatment-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.card-content {
    padding: 2rem;
}

.card-content h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-content p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section .lead {
    opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .benefit-card,
    .treatment-card {
        margin-bottom: 2rem;
    }

    .cta-section .text-lg-end {
        text-align: center !important;
        margin-top: 1.5rem;
    }
}

/* Agronomy Section */
.agronomy-section {
    background: var(--white);
    position: relative;
}

.section-badge {
    display: inline-block;
    background: var(--light-green);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.agronomy-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.agronomy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
    transition: all 0.3s ease;
}

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

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 1.8rem;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.agronomy-card:hover .card-icon {
    background: var(--primary-green);
}

.agronomy-card:hover .card-icon i {
    color: var(--white);
}

.agronomy-card h3 {
    color: var(--primary-green);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-size: 0.95rem;
}

.service-list li i {
    color: var(--primary-green);
    margin-top: 0.2rem;
}

.agronomy-cta {
    background: var(--light-green);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.agronomy-cta h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.agronomy-cta p {
    color: var(--text-color);
    font-size: 1.1rem;
    opacity: 0.9;
}

.bg-light-green {
    background: var(--light-green);
}

@media (max-width: 768px) {
    .agronomy-card {
        padding: 1.5rem;
    }

    .agronomy-cta h3 {
        font-size: 1.5rem;
    }

    .agronomy-cta .btn {
        width: 100%;
        margin-top: 1rem;
    }
} 