/* Estilos adicionais para páginas específicas */

/* Hero Pages */
.hero-about {
    background-image: url('Images/rebanho.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(43, 93, 49, 0.8), rgba(30, 64, 35, 0.8));
    z-index: 1;
}

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

.hero-services {
    background-image: url('Images/nelore_pasto.png');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    position: relative;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(43, 93, 49, 0.8), rgba(30, 64, 35, 0.8));
    z-index: 1;
}

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

.hero-contact {
    background: linear-gradient(135deg, #2B5D31 0%, #1e4023 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-about h1, .hero-services h1, .hero-contact h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-about p, .hero-services p, .hero-contact p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page Styles */
.company-story {
    padding: 80px 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    color: #2B5D31;
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.story-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mission-vision {
    padding: 80px 0;
    background: #f8fdf9;
}

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

.mvv-item {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.mvv-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mvv-item h3 {
    color: #2B5D31;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.mvv-item ul {
    list-style: none;
    text-align: left;
}

.mvv-item li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.mvv-item li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2B5D31;
    font-weight: bold;
}

.team {
    padding: 80px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.team-member {
    text-align: center;
    background: #f8fdf9;
    padding: 30px;
    border-radius: 12px;
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h3 {
    color: #2B5D31;
    margin-bottom: 5px;
}

.member-role {
    color: #666;
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
}

.commitment {
    padding: 80px 0;
    background: #f8fdf9;
}

.commitment h2 {
    text-align: center;
    color: #2B5D31;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

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

.commitment-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.commitment-item h3 {
    color: #2B5D31;
    margin-bottom: 15px;
}

.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2B5D31 0%, #1e4023 100%);
    color: white;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Services Page Styles */
.service-detail {
    padding: 80px 0;
    background: white;
}

.service-detail.alt {
    background: #f8fdf9;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-badge {
    background: #2B5D31;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.service-detail h2 {
    color: #2B5D31;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.service-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.service-description h3 {
    color: #2B5D31;
    margin: 25px 0 15px 0;
}

.service-description ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-description li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.service-description li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2B5D31;
    font-weight: bold;
}

.service-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2B5D31;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.service-image {
    background: #f0f0f0;
    border-radius: 12px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.service-comparison {
    padding: 80px 0;
    background: white;
}

.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: #2B5D31;
    color: white;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #eee;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-item {
    padding: 20px;
    text-align: center;
}

.comparison-header .comparison-item {
    font-weight: 600;
}

.comparison-row .comparison-item:first-child {
    text-align: left;
    font-weight: 500;
}

.service-process {
    padding: 80px 0;
    background: #f8fdf9;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2B5D31;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    color: #2B5D31;
    margin-bottom: 15px;
}

.services-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2B5D31 0%, #1e4023 100%);
    color: white;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.services-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: #f8fdf9;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form-container h2 {
    color: #2B5D31;
    margin-bottom: 10px;
}

.contact-form-container p {
    color: #666;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2B5D31;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card,
.whatsapp-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-info-card h3,
.whatsapp-card h3 {
    color: #2B5D31;
    margin-bottom: 20px;
}

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

.contact-icon {
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
}

.contact-details strong {
    display: block;
    color: #2B5D31;
    margin-bottom: 5px;
}

.whatsapp-card {
    text-align: center;
    background: linear-gradient(135deg, #25D366 0%, #1da851 100%);
    color: white;
}

.whatsapp-card h3 {
    color: white;
}

.faq-section {
    padding: 80px 0;
    background: white;
}

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

.faq-item {
    background: #f8fdf9;
    padding: 30px;
    border-radius: 12px;
}

.faq-item h3 {
    color: #2B5D31;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Calculator Page Styles */
.hero-calculator {
    background: linear-gradient(135deg, #2B5D31 0%, #1e4023 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-calculator h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-calculator p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.calculator-section {
    padding: 80px 0;
    background: #f8fdf9;
}

.calculator-intro {
    text-align: center;
    margin-bottom: 60px;
}

.calculator-intro h2 {
    color: #2B5D31;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.calculator-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.calculator-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 60px;
    text-align: center;
}

.input-section {
    margin-bottom: 30px;
}

.input-section label {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2B5D31;
    margin-bottom: 10px;
}

.input-section input {
    width: 300px;
    max-width: 100%;
    padding: 15px;
    font-size: 1.2rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 10px;
}

.input-section input:focus {
    outline: none;
    border-color: #2B5D31;
}

.input-section small {
    color: #666;
    font-size: 0.9rem;
}

.results-section {
    margin-bottom: 60px;
}

.results-section h3 {
    color: #2B5D31;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.result-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-top: 4px solid #2B5D31;
}

.result-card.iatf {
    border-top-color: #4A9B8E;
}

.result-card.embrio {
    border-top-color: #7CB342;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
}

.result-header h4 {
    color: #2B5D31;
    font-size: 1.3rem;
    margin: 0;
}

.result-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.result-badge.baseline {
    background: #e9ecef;
    color: #6c757d;
}

.result-badge.improvement {
    background: #d1ecf1;
    color: #0c5460;
}

.result-badge.premium {
    background: #d4edda;
    color: #155724;
}

.result-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.stat:last-child {
    border-bottom: none;
}

.stat-label {
    font-weight: 500;
    color: #666;
}

.stat-value {
    font-weight: 600;
    color: #333;
}

.stat-value.profit {
    color: #2B5D31;
    font-size: 1.1rem;
}

.stat-value.gain {
    color: #28a745;
    font-weight: 700;
}

.improvement-stat {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border: none;
}

.summary-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.summary-section h4 {
    color: #2B5D31;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8fdf9;
    border-radius: 8px;
}

.summary-label {
    font-weight: 500;
    color: #666;
}

.summary-value {
    font-weight: 600;
    color: #333;
}

.cta-section {
    background: linear-gradient(135deg, #2B5D31 0%, #1e4023 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-about h1, .hero-services h1, .hero-contact h1 {
        font-size: 2.2rem;
    }
    
    .story-content,
    .service-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .comparison-item {
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }
    
    .service-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .mvv-grid,
    .team-grid,
    .commitment-grid,
    .process-steps,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Páginas Legais */
.hero-legal {
    background: linear-gradient(135deg, #2B5D31 0%, #1e4023 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.hero-legal h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-legal p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.legal-content {
    padding: 80px 0;
    background: white;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-text h2 {
    color: #2B5D31;
    font-size: 1.5rem;
    margin: 40px 0 20px 0;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-text li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .hero-legal {
        padding: 100px 0 40px;
    }
    
    .hero-legal h1 {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 60px 0;
    }
    
    .legal-text {
        padding: 0 20px;
    }
}

/* Breadcrumbs */
.breadcrumbs {
    background: #f8fdf9;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: #2B5D31;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #1e4023;
}

.breadcrumb-separator {
    color: #666;
}

.breadcrumb-current {
    color: #666;
    font-weight: 500;
}

.page-hero {
    background: linear-gradient(135deg, #2B5D31 0%, #1e4023 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Resultados Page Styles */
.testimonials-detailed {
    padding: 80px 0;
    background: white;
}

.testimonial-detailed {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #f0f0f0;
}

.testimonial-detailed:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.testimonial-detailed.alt {
    grid-template-columns: 1fr 300px;
    background: #f8fdf9;
    padding: 60px;
    border-radius: 12px;
    border-bottom: none;
    margin: 0 -60px 80px -60px;
}

.testimonial-image {
    position: sticky;
    top: 120px;
}

.testimonial-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-detailed.alt .testimonial-image img {
    object-position: center -1mm;
}

.testimonial-content {
    padding: 20px 0;
}

.testimonial-header {
    margin-bottom: 30px;
}

.testimonial-header h3 {
    color: #2B5D31;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.testimonial-location {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

.testimonial-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #444;
    font-size: 1.05rem;
}

.testimonial-text p:last-child {
    margin-bottom: 0;
}

.testimonial-text strong {
    color: #2B5D31;
}

.results-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2B5D31 0%, #1e4023 100%);
    color: white;
    text-align: center;
}

.results-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.results-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Menu Active State */
.nav-list a.active {
    color: #2B5D31;
    font-weight: 600;
    position: relative;
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #2B5D31;
    border-radius: 1px;
}

@media (max-width: 1024px) {
    .testimonial-detailed,
    .testimonial-detailed.alt {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 0 0 60px 0;
        padding: 40px;
    }
    
    .testimonial-detailed.alt {
        margin: 0 -40px 60px -40px;
    }
    
    .testimonial-image {
        position: static;
        order: -1;
    }
    
    .testimonial-image img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .testimonials-detailed {
        padding: 60px 0;
    }
    
    .testimonial-detailed,
    .testimonial-detailed.alt {
        padding: 30px 20px;
        margin: 0 -20px 40px -20px;
    }
    
    .testimonial-detailed.alt {
        margin: 0 -20px 40px -20px;
    }
    
    .testimonial-header h3 {
        font-size: 1.5rem;
    }
    
    .testimonial-text p {
        font-size: 1rem;
    }
    
    .results-cta h2 {
        font-size: 2rem;
    }
    
    .results-cta p {
        font-size: 1.1rem;
    }
}