/* Reset & Fonts */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #fcfbfa;
    text-align: justify;
}

p {
    text-align: justify;
}

/* Header & Navigation (INTACTO) */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    max-height: 60px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #4a3e3d;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

nav a:hover, nav a.active {
    color: #b85c79;
}

.btn-contact-nav {
    background-color: #b85c79;
    color: white !important;
    padding: 8px 18px;
    border-radius: 20px;
    transition: background-color 0.3s ease !important;
}

.btn-contact-nav:hover {
    background-color: #96425c !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fdf6f0 0%, #f7e8ee 100%);
    padding: 60px 20px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    color: #2c2523;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.15rem;
    color: #665b59;
    margin-bottom: 25px;
    text-align: center;
}

.hero-btn {
    display: inline-block;
    background-color: #b85c79;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(184, 92, 121, 0.3);
    transition: transform 0.2s, background-color 0.2s;
}

.hero-btn:hover {
    transform: translateY(-2px);
    background-color: #96425c;
}

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

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #2c2523;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #776b69;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

/* Cards Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

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

.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.3rem;
    color: #2c2523;
    margin-bottom: 12px;
}

.card-text {
    color: #665b59;
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: justify;
}

.card-link {
    display: inline-block;
    color: #b85c79;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.2s;
}

.card-link:hover {
    color: #7a3249;
}

/* Benefit Banner / Highlights */
.benefits-section {
    background-color: #f4eae6;
    padding: 50px 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.benefit-icon {
    font-size: 2.2rem;
    color: #b85c79;
    margin-bottom: 10px;
}

.benefit-item h4 {
    color: #2c2523;
    margin-bottom: 8px;
}

.benefit-item p {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

/* Page Banner (INTACTO) */
.page-banner {
    background: linear-gradient(135deg, #4a3e3d 0%, #2c2523 100%);
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.page-banner h1 {
    font-size: 2.3rem;
    margin-bottom: 10px;
}

.page-banner p {
    text-align: center;
}

/* Product Detail Sections */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

@media (max-width: 768px) {
    .product-detail {
        grid-template-columns: 1fr;
    }
}

.product-detail img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.product-info h2 {
    color: #b85c79;
    margin-bottom: 15px;
}

.product-info p {
    text-align: justify;
}

.product-info ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.product-info li {
    margin-bottom: 8px;
    text-align: justify;
}

/* Footer */
footer {
    background-color: #2c2523;
    color: #e0d8d6;
    padding: 50px 20px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h3 {
    color: #ffffff;
    margin-bottom: 18px;
    font-size: 1.1rem;
    border-bottom: 2px solid #b85c79;
    display: inline-block;
    padding-bottom: 5px;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.8;
    text-align: justify;
}

.footer-col li {
    font-size: 0.9rem;
    line-height: 1.8;
}

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

.footer-col a {
    color: #e0d8d6;
    text-decoration: none;
}

.footer-col a:hover {
    color: #b85c79;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #443937;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #a09593;
}

.footer-bottom p {
    text-align: center;
}

/* Responsive Nav */
@media (max-width: 900px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}