:root {
    --primary-color: #E84393;
    --secondary-color: #FFEAA7;
    --accent-color: #6C5CE7;
    --text-color: #2D3436;
    --light-text: #636E72;
    --border-color: #FDCB6E;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.main-conteiner{
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
    padding: 20px;
    
}

.container {
    width: 95%;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.header-title {
    background: linear-gradient(135deg, #d5b13d, #FD79A8);
    color: white;
    padding: 30px 25px;
    text-align: center;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}

.calculator {
    padding: 30px;
}

.input-group {
    margin-bottom: 25px;
}

.input-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.input-col {
    flex: 1;
    min-width: 200px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

input, select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

input:focus, select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(232, 67, 147, 0.2);
}

button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
    margin-top: 10px;
}

button:hover {
    background-color: #D6306E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 67, 147, 0.3);
}

.measure-guide {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
    padding: 15px;
    background-color: var(--secondary-color);
    border-radius: 10px;
}

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

.results {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
    display: none;
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.result-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.result-title {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 8px;
}

.result-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.result-unit {
    font-size: 0.9rem;
    color: var(--light-text);
}

.breast-shapes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.shape-option {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.shape-option.selected {
    border-color: var(--primary-color);
    background-color: rgba(232, 67, 147, 0.1);
}

.shape-illustration {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.size-comparison {
    width: 100%;
    overflow-x: auto;
    margin: 25px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #F0F0F0;
}

th {
    background-color: var(--primary-color);
    color: white;
}

tr:nth-child(even) {
    background-color: #F9F9F9;
}

.highlight {
    background-color: #FFF9C4 !important;
    font-weight: 600;
}

.chart-container {
    height: 300px;
    margin: 30px 0;
}

.brand-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
    justify-content: center;
}

.brand-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.brand-logo.active {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

.info-section {
    padding: 30px;
    background-color: var(--secondary-color);
    margin-top: 30px;
    border-radius: 15px;
}

h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

h3 {
    color: var(--primary-color);
    margin: 25px 0 15px;
    font-size: 1.2rem;
}

p {
    margin-bottom: 15px;
}

ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

.tip-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-left: 4px solid var(--accent-color);
}

.tip-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.tip-title svg {
    margin-right: 10px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .input-row {
        flex-direction: column;
    }
    
    .breast-shapes {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .result-grid {
        grid-template-columns: 1fr;
    }

    .container {
        width: 100%;
        
    }
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animated {
    animation: fadeIn 0.6s ease-out;
}


 /* ===== ARTICLE SPECIFIC STYLES - NO BODY STYLES ===== */
 #brasize-ultimate-guide {
      max-width: 1280px;
      margin: 0 auto;
      padding: 2rem 1.5rem 3rem 1.5rem;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    /* Hero Section */
    .brasize-guide-hero {
      text-align: center;
      margin-bottom: 2.5rem;
      padding: 2rem 1.5rem;
      background: linear-gradient(135deg, #E84393 0%, #FD79A8 100%);
      border-radius: 32px;
      box-shadow: 0 12px 30px rgba(232, 67, 147, 0.3);
    }

    .brasize-guide-hero h2 {
      font-size: 2.6rem;
      font-weight: 800;
      color: white;
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
      font-family: 'Playfair Display', serif;
    }

    .brasize-guide-hero .brasize-hero-sub {
      font-size: 1.2rem;
      color: rgba(255, 255, 255, 0.9);
      max-width: 720px;
      margin: 0 auto;
      line-height: 1.5;
    }

    .brasize-guide-meta {
      display: flex;
      justify-content: center;
      gap: 2rem;
      color: rgba(255, 255, 255, 0.8);
      font-weight: 500;
      margin-top: 1.2rem;
      flex-wrap: wrap;
    }

    .brasize-guide-meta span i {
      margin-right: 0.5rem;
    }

    /* Grid Layout */
    .brasize-guide-grid {
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 2rem;
    }

    /* Main Content */
    .brasize-main-content {
      background: white;
      border-radius: 28px;
      padding: 2rem 2rem 2.5rem 2rem;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      border: 1px solid rgba(232, 67, 147, 0.15);
    }

    .brasize-main-content h2 {
      font-size: 1.8rem;
      font-weight: 700;
      margin-top: 2rem;
      margin-bottom: 1rem;
      color: #E84393;
      border-left: 5px solid #FD79A8;
      padding-left: 1rem;
      font-family: 'Playfair Display', serif;
    }

    .brasize-main-content h2:first-of-type {
      margin-top: 0;
    }

    .brasize-main-content h3 {
      font-size: 1.35rem;
      font-weight: 600;
      margin: 1.5rem 0 0.75rem 0;
      color: #FD79A8;
    }

    .brasize-main-content p {
      font-size: 1.05rem;
      color: #2d3748;
      margin-bottom: 1.2rem;
      line-height: 1.6;
    }

    .brasize-main-content ul, .brasize-main-content ol {
      margin: 1rem 0 1.2rem 1.8rem;
      color: #2d3748;
      line-height: 1.6;
    }

    .brasize-main-content li {
      margin-bottom: 0.5rem;
    }

    .brasize-highlight-box {
      background: linear-gradient(135deg, rgba(232, 67, 147, 0.08), rgba(253, 121, 168, 0.05));
      border-left: 6px solid #FD79A8;
      padding: 1.25rem 1.5rem;
      border-radius: 20px;
      margin: 1.75rem 0;
    }

    .brasize-pro-tip {
      background: rgba(253, 121, 168, 0.1);
      border-radius: 20px;
      padding: 1.2rem 1.5rem;
      margin: 1.5rem 0;
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      border: 1px solid rgba(232, 67, 147, 0.3);
    }

    .brasize-pro-tip i {
      font-size: 1.8rem;
      color: #FD79A8;
    }

    .brasize-stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1.2rem;
      margin: 2rem 0;
    }

    .brasize-stat-card {
      background: #fff5f8;
      border-radius: 20px;
      padding: 1.2rem;
      text-align: center;
      transition: all 0.2s;
      border: 1px solid rgba(232, 67, 147, 0.2);
    }

    .brasize-stat-card .stat-number {
      font-size: 2rem;
      font-weight: 800;
      color: #E84393;
      margin-bottom: 0.25rem;
    }

    .brasize-quote-block {
      background: #fff5f8;
      padding: 1.5rem;
      border-radius: 24px;
      text-align: center;
      font-style: italic;
      margin: 1.5rem 0;
      border: 1px solid rgba(232, 67, 147, 0.2);
    }

    .brasize-quote-block i {
      font-size: 2rem;
      color: #FD79A8;
      margin-bottom: 0.5rem;
      display: inline-block;
    }

    .brasize-table-wrapper {
      overflow-x: auto;
      margin: 1.5rem 0;
    }

    .brasize-cup-table {
      width: 100%;
      border-collapse: collapse;
      background: #fff5f8;
      border-radius: 16px;
      overflow: hidden;
    }

    .brasize-cup-table th, .brasize-cup-table td {
      padding: 12px 16px;
      text-align: left;
      border-bottom: 1px solid rgba(232, 67, 147, 0.2);
    }

    .brasize-cup-table th {
      background: rgba(232, 67, 147, 0.1);
      font-weight: 600;
      color: #E84393;
    }

    .brasize-cup-table tr:hover {
      background: rgba(253, 121, 168, 0.05);
    }

    /* Shape Cards */
    .brasize-shapes-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
      margin: 1.5rem 0;
    }

    .brasize-shape-card {
      background: #fff5f8;
      border-radius: 16px;
      padding: 1.2rem;
      text-align: center;
      border: 1px solid rgba(232, 67, 147, 0.2);
      transition: all 0.2s;
    }

    .brasize-shape-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(232, 67, 147, 0.1);
    }

    .brasize-shape-icon {
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }

    .brasize-shape-name {
      font-weight: 700;
      color: #E84393;
      margin-bottom: 0.5rem;
    }

    /* Sidebar */
    .brasize-sidebar-section {
      align-self: start;
    }

    .brasize-side-card {
      background: white;
      border-radius: 24px;
      padding: 1.5rem;
      margin-bottom: 1.8rem;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(232, 67, 147, 0.15);
    }

    .brasize-side-card h4 {
      font-size: 1.35rem;
      font-weight: 700;
      margin-bottom: 1rem;
      border-bottom: 3px solid #FD79A8;
      padding-bottom: 0.6rem;
      color: #E84393;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'Playfair Display', serif;
    }

    .brasize-checklist, .brasize-resource-list {
      list-style: none;
      padding: 0;
    }

    .brasize-checklist li, .brasize-resource-list li {
      margin-bottom: 0.85rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: #2d3748;
    }

    .brasize-checklist i, .brasize-resource-list i {
      color: #FD79A8;
      width: 1.5rem;
      font-size: 1rem;
    }

    .brasize-tool-link {
      display: inline-block;
      background: linear-gradient(95deg, #E84393, #FD79A8);
      color: white;
      text-decoration: none;
      font-weight: 600;
      padding: 0.8rem 1.2rem;
      border-radius: 40px;
      width: 100%;
      text-align: center;
      margin-top: 1rem;
      transition: transform 0.2s, box-shadow 0.2s;
      border: none;
      cursor: pointer;
      font-size: 0.95rem;
    }

    .brasize-tool-link:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(232, 67, 147, 0.4);
    }

    .brasize-share-buttons {
      display: flex;
      gap: 0.8rem;
      justify-content: center;
      margin-top: 1.2rem;
    }

    .brasize-share-btn {
      background: #f0f0f0;
      padding: 0.5rem 1rem;
      border-radius: 40px;
      font-size: 0.85rem;
      font-weight: 500;
      text-decoration: none;
      color: #4a5568;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    .brasize-share-btn:hover {
      background: #e2e8f0;
    }

    .brasize-footer-note {
      margin-top: 2.5rem;
      text-align: center;
      font-size: 0.85rem;
      color: #718096;
      border-top: 1px solid #e2e8f0;
      padding-top: 2rem;
    }

    @media (max-width: 880px) {
      .brasize-guide-grid {
        grid-template-columns: 1fr;
      }
      .brasize-guide-hero h2 {
        font-size: 2rem;
      }
      .brasize-main-content {
        padding: 1.5rem;
      }
      #brasize-ultimate-guide {
        padding: 1rem;
      }
    }