/*
Theme Name: Vetsept Theme
Theme URI: https://www.tseptbiopharma.com/
Author: AI Assistant
Description: Tema para Landing Page Vetsept Home & Pets.
Version: 1.0.0
Text Domain: vetsept
*/

/* Core Variables */
:root {
  --color-white: #ffffff;
  --color-blue: #00AEEF;
  --color-green: #8DC63F;
  --color-text: #333333;
  --color-bg-light: #f8f9fa;
  --color-blue-dark: #0077a3;
  --color-green-dark: #6ba02c;
  --font-main: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin-bottom: 0.5em;
  font-weight: 700;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--color-green);
  color: var(--color-white);
  box-shadow: 0 4px 6px rgba(141, 198, 63, 0.3);
}

.btn-primary:hover {
  background-color: var(--color-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(141, 198, 63, 0.4);
}

.btn-secondary {
  background-color: var(--color-blue);
  color: var(--color-white);
  box-shadow: 0 4px 6px rgba(0, 174, 239, 0.3);
}

.btn-secondary:hover {
  background-color: var(--color-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 174, 239, 0.4);
}

/* 1. Top Bar */
.top-bar {
  background-color: var(--color-blue);
  color: var(--color-white);
  text-align: center;
  padding: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* 2. Header */
.site-header {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  background-color: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--color-green);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-logo span { color: var(--color-blue); }

@media (min-width: 768px) {
  .site-logo { font-size: 1.5rem; }
}

/* 3. Hero Section */
.hero {
  padding: 60px 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #111;
}

.hero-content h2 {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 30px;
  color: #555;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-content h1 { font-size: 2.8rem; }
  .hero-content h2 { font-size: 1.3rem; }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-cta small {
  font-size: 0.85rem;
  color: #777;
  text-align: center;
  margin-top: 5px;
}

@media (min-width: 768px) {
  .hero-cta {
    align-items: flex-start;
  }
  .hero-cta small { text-align: left; }
}

.hero-image {
  background-color: #f0f4f8;
  border-radius: 12px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* 4. Trust Bar */
.trust-bar {
  background-color: #f8f9fa;
  padding: 20px 0;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
}
.trust-bar .container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: space-around;
  text-align: center;
}
@media (min-width: 768px) {
  .trust-bar .container {
    flex-direction: row;
  }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #666;
  font-size: 0.95rem;
}

/* 5. The Pain */
.pain-section {
  padding: 80px 0;
  background-color: #fdfdfd;
  text-align: center;
}
.pain-section h2 {
  font-size: 1.8rem;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .pain-section h2 { font-size: 2.2rem; }
}
.pain-section p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 20px;
  color: #555;
}

/* 6. The Solution */
.solution-section {
  padding: 80px 0;
  background-color: var(--color-white);
}
.solution-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .solution-section h2 { font-size: 2.4rem; }
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px 40px;
  }
}
.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: var(--color-bg-light);
  border-radius: 12px;
  transition: transform 0.3s;
}
.benefit-item:hover {
  transform: translateY(-5px);
}
.benefit-icon {
  font-size: 2.5rem;
  background: white;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  flex-shrink: 0;
}
.benefit-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--color-blue-dark);
}
.benefit-content p {
  color: #555;
  font-size: 1rem;
}

/* 7. Comparison Table */
.comparison-section {
  padding: 80px 0;
  background-color: var(--color-bg-light);
}
.comparison-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .comparison-section h2 { font-size: 2.4rem; }
}
.compare-table-wrapper {
  overflow-x: auto;
  max-width: 900px;
  margin: 0 auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  min-width: 600px;
}
.compare-table th, .compare-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.compare-table th {
  background-color: #f0f4f8;
  font-size: 1.1rem;
  color: #333;
}
.compare-table .vetsept-col {
  background-color: rgba(141, 198, 63, 0.05);
  font-weight: 600;
  color: var(--color-green-dark);
}
.compare-table .competitor-col {
  color: #777;
}
.check-icon { color: var(--color-green); font-weight: bold; margin-right: 5px; }
.cross-icon { color: #e74c3c; font-weight: bold; margin-right: 5px; }

/* 8. Pricing Section */
.pricing-section {
  padding: 100px 0;
}
.pricing-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .pricing-section h2 { font-size: 2.5rem; }
}
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}
@media (min-width: 768px) {
  .pricing-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pricing-card {
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  background: white;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #333;
}
.pricing-card .price {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 15px;
  color: var(--color-text);
}
.pricing-card ul {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
  padding: 0 10px;
}
.pricing-card ul li {
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  color: #555;
  font-size: 0.95rem;
}
.pricing-card .btn {
  width: 100%;
}

/* Highlighted Popular Card */
.pricing-card.popular {
  border: 2px solid var(--color-blue);
  position: relative;
  background-color: #fcfcfc;
  padding: 50px 20px;
  box-shadow: 0 10px 30px rgba(0, 174, 239, 0.1);
  z-index: 2;
}
@media (min-width: 768px) {
  .pricing-card.popular {
    transform: scale(1.05);
  }
  .pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
  }
}
.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-blue);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(0, 174, 239, 0.3);
}

/* 9. Final CTA */
.final-cta {
  padding: 100px 0;
  background-color: var(--color-blue);
  background-image: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
  color: white;
  text-align: center;
}
.final-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: white;
}
@media (min-width: 768px) {
  .final-cta h2 { font-size: 2.8rem; }
}
.final-cta p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}
.final-cta .btn {
  font-size: 1.3rem;
  padding: 20px 45px;
  background-color: var(--color-green);
  color: white;
}
.final-cta .btn:hover {
  background-color: #fff;
  color: var(--color-green-dark);
}

/* Footer */
.site-footer {
  padding: 40px 0;
  text-align: center;
  background: #222;
  color: #888;
  font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background-color: var(--color-bg-light);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-copy .kicker {
  color: var(--color-green);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.contact-copy h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.contact-points p {
  margin-bottom: 10px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-panel {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.form-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--color-blue);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.field-full {
  grid-column: 1 / -1;
}
.field label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}
.field input, .field textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--color-blue);
}
.error-box {
  background: #fee;
  color: #c00;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.btn-full {
  width: 100%;
}

/* --- MODAL KITS --- */
.fx-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.fx-modal.is-active {
    opacity: 1;
    pointer-events: auto;
}

.fx-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(9, 23, 42, 0.7);
    backdrop-filter: blur(4px);
}

.fx-modal-content {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.fx-modal.is-active .fx-modal-content {
    transform: translateY(0);
}

.fx-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: #999;
    cursor: pointer;
    transition: color 0.2s ease;
}

.fx-modal-close:hover {
    color: #e74c3c;
}

.fx-modal-header {
    text-align: left;
}

.fx-modal-title {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 8px;
    line-height: 1.2;
}

.fx-modal-subtitle {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.fx-modal-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fx-modal-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #999;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 4px 0;
}

.fx-modal-divider::before,
.fx-modal-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ddd;
}

.fx-modal-divider span {
    padding: 0 12px;
}

.fx-modal-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fx-address-wrapper {
    position: relative;
}

.fx-address-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.fx-address-input-group input {
    padding-right: 52px;
}

.fx-btn-icon-only {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: var(--color-blue);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, opacity 0.2s;
}

.fx-btn-icon-only:hover {
    background: #f0f0f0;
}

.fx-btn-icon-only.is-loading {
    opacity: 0.5;
    pointer-events: none;
    animation: pulse-geolocation 1.5s infinite;
}

@keyframes pulse-geolocation {
    0% { opacity: 0.5; }
    50% { opacity: 1; color: var(--color-text); }
    100% { opacity: 0.5; }
}

.fx-qty-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
}

.fx-qty-field label {
    color: #555;
    font-size: 0.77rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.fx-qty-controls {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    width: fit-content;
}

.fx-qty-btn {
    width: 44px;
    height: 44px;
    background: #f8f8f8;
    border: none;
    color: var(--color-text);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.fx-qty-btn:hover {
    background: #ddd;
}

.fx-qty-controls input {
    width: 60px;
    height: 44px;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
    font-weight: 700;
    color: var(--color-text);
    appearance: textfield;
    -moz-appearance: textfield;
}

.fx-qty-controls input::-webkit-outer-spin-button,
.fx-qty-controls input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
